mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
12 lines
228 B
CMake
12 lines
228 B
CMake
add_library(btrie
|
|
src/btrie.c
|
|
include/btrie.h
|
|
)
|
|
|
|
target_include_directories (btrie PUBLIC include)
|
|
|
|
if (ENABLE_TESTS)
|
|
add_executable(test_btrie test/test_btrie.c)
|
|
target_link_libraries(test_btrie btrie)
|
|
endif ()
|