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
34 lines
662 B
CMake
34 lines
662 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
|
|
ttl.cc
|
|
${cql_grammar_srcs})
|
|
target_include_directories(alternator
|
|
PUBLIC
|
|
${CMAKE_SOURCE_DIR}
|
|
${CMAKE_BINARY_DIR}
|
|
PRIVATE
|
|
${RAPIDJSON_INCLUDE_DIRS})
|
|
target_link_libraries(alternator
|
|
cql3
|
|
idl
|
|
Seastar::seastar
|
|
xxHash::xxhash)
|
|
|
|
check_headers(check-headers alternator
|
|
GLOB_RECURSE ${CMAKE_CURRENT_SOURCE_DIR}/*.hh)
|