mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-18 12:22:12 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
13 lines
507 B
CMake
13 lines
507 B
CMake
add_executable (string_pool string_pool.cpp)
|
|
target_link_libraries (string_pool PRIVATE clickhouse_common_io)
|
|
target_include_directories (string_pool SYSTEM BEFORE PRIVATE ${SPARSEHASH_INCLUDE_DIR})
|
|
|
|
add_executable (field field.cpp)
|
|
target_link_libraries (field PRIVATE dbms)
|
|
|
|
add_executable (move_field move_field.cpp)
|
|
target_link_libraries (move_field PRIVATE clickhouse_common_io)
|
|
|
|
add_executable (string_ref_hash string_ref_hash.cpp)
|
|
target_link_libraries (string_ref_hash PRIVATE clickhouse_common_io)
|