mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 21:24:28 +00:00
19 lines
374 B
CMake
19 lines
374 B
CMake
add_definitions(-DHAVE_CONFIG_H -DTHREADED)
|
|
|
|
if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
|
|
add_definitions(-Wno-unused-but-set-variable)
|
|
endif()
|
|
|
|
include_directories (include/zookeeper src)
|
|
|
|
add_library (zookeeper
|
|
src/zookeeper.c
|
|
src/zookeeper.jute.c
|
|
src/zk_hashtable.c
|
|
src/zk_log.c
|
|
src/mt_adaptor.c
|
|
src/recordio.c
|
|
src/hashtable/hashtable.c
|
|
src/hashtable/hashtable_itr.c
|
|
)
|