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
37 lines
917 B
CMake
37 lines
917 B
CMake
add_library(mutation STATIC)
|
|
target_sources(mutation
|
|
PRIVATE
|
|
async_utils.cc
|
|
atomic_cell.cc
|
|
canonical_mutation.cc
|
|
collection_mutation.cc
|
|
converting_mutation_partition_applier.cc
|
|
counters.cc
|
|
frozen_mutation.cc
|
|
mutation.cc
|
|
mutation_fragment.cc
|
|
mutation_fragment_stream_validator.cc
|
|
mutation_partition.cc
|
|
mutation_partition_serializer.cc
|
|
mutation_partition_v2.cc
|
|
mutation_partition_view.cc
|
|
partition_version.cc
|
|
range_tombstone.cc
|
|
range_tombstone_list.cc)
|
|
target_include_directories(mutation
|
|
PUBLIC
|
|
${CMAKE_SOURCE_DIR})
|
|
target_link_libraries(mutation
|
|
PUBLIC
|
|
idl
|
|
Seastar::seastar
|
|
xxHash::xxhash
|
|
PRIVATE
|
|
absl::headers)
|
|
if (Scylla_USE_PRECOMPILED_HEADER_USE)
|
|
target_precompile_headers(mutation REUSE_FROM scylla-precompiled-header)
|
|
endif()
|
|
|
|
check_headers(check-headers mutation
|
|
GLOB_RECURSE ${CMAKE_CURRENT_SOURCE_DIR}/*.hh)
|