mirror of
https://github.com/scylladb/scylladb.git
synced 2026-06-03 13:37:04 +00:00
14 lines
285 B
CMake
14 lines
285 B
CMake
add_library(data_dictionary STATIC)
|
|
target_sources(data_dictionary
|
|
PRIVATE
|
|
data_dictionary.cc)
|
|
target_include_directories(data_dictionary
|
|
PUBLIC
|
|
${CMAKE_SOURCE_DIR})
|
|
target_link_libraries(data_dictionary
|
|
PRIVATE
|
|
cql3
|
|
PUBLIC
|
|
Seastar::seastar
|
|
xxHash::xxhash)
|