mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-25 11:00:35 +00:00
Add precompiled header support to CMakeLists.txt and configure.py -
it improves compilation time by approximately 10%.
New header `stdafx.hh` is added, don't include it manually -
the compiler will include it for you. The header contains includes from
external libraries used by Scylla - seastar, standard library,
linux headers and zlib.
The feature is enabled by default, use CMake option `Scylla_USE_PRECOMPILED_HEADER`
or configure.py --disable-precompiled-header to disable.
The feature should be disabled, when trying to check headers - otherwise
you might get false negatives on missing includes from seastar / abseil and so on.
Note: following configuration needs to be added to ccache.conf:
sloppiness = pch_defines,time_macros,include_file_mtime,include_file_ctime
Closes scylladb/scylladb#26617
42 lines
887 B
CMake
42 lines
887 B
CMake
include(generate_cql_grammar)
|
|
generate_cql_grammar(
|
|
GRAMMAR expressions.g
|
|
SOURCES cql_grammar_srcs)
|
|
|
|
add_library(alternator STATIC)
|
|
target_sources(alternator
|
|
PRIVATE
|
|
controller.cc
|
|
server.cc
|
|
executor.cc
|
|
stats.cc
|
|
serialization.cc
|
|
expressions.cc
|
|
conditions.cc
|
|
auth.cc
|
|
streams.cc
|
|
consumed_capacity.cc
|
|
ttl.cc
|
|
parsed_expression_cache.cc
|
|
${cql_grammar_srcs})
|
|
target_include_directories(alternator
|
|
PUBLIC
|
|
${CMAKE_SOURCE_DIR}
|
|
${CMAKE_BINARY_DIR}
|
|
PRIVATE
|
|
${RAPIDJSON_INCLUDE_DIRS})
|
|
target_link_libraries(alternator
|
|
PUBLIC
|
|
Seastar::seastar
|
|
xxHash::xxhash
|
|
PRIVATE
|
|
cql3
|
|
idl
|
|
absl::headers)
|
|
|
|
if (Scylla_USE_PRECOMPILED_HEADER_USE)
|
|
target_precompile_headers(alternator REUSE_FROM scylla-precompiled-header)
|
|
endif()
|
|
check_headers(check-headers alternator
|
|
GLOB_RECURSE ${CMAKE_CURRENT_SOURCE_DIR}/*.hh)
|