mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-29 11:10:40 +00:00
to have feature parity with `configure.py`. we won't need this once we migrate to C++20 modules. but before that day comes, we need to stick with C++ headers. we generate a rule for each .hh files to create a corresponding .cc and then compile it, in order to verify the self-containness of that header. so the number of rule is quite large, to avoid the unnecessary overhead. the check-header target is enabled only if `Scylla_CHECK_HEADERS` option is enabled. Signed-off-by: Kefu Chai <kefu.chai@scylladb.com> Closes scylladb/scylladb#15913
24 lines
565 B
CMake
24 lines
565 B
CMake
add_library(compaction STATIC)
|
|
target_sources(compaction
|
|
PRIVATE
|
|
compaction.cc
|
|
compaction_manager.cc
|
|
compaction_strategy.cc
|
|
leveled_compaction_strategy.cc
|
|
size_tiered_compaction_strategy.cc
|
|
task_manager_module.cc
|
|
time_window_compaction_strategy.cc)
|
|
target_include_directories(compaction
|
|
PUBLIC
|
|
${CMAKE_SOURCE_DIR})
|
|
target_link_libraries(compaction
|
|
PUBLIC
|
|
Seastar::seastar
|
|
xxHash::xxhash
|
|
PRIVATE
|
|
mutation_writer
|
|
replica)
|
|
|
|
check_headers(check-headers compaction
|
|
GLOB_RECURSE ${CMAKE_CURRENT_SOURCE_DIR}/*.hh)
|