mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
Merge branch 'master' of github.com:yandex/ClickHouse
This commit is contained in:
commit
f9496e590f
@ -8,7 +8,6 @@ add_definitions(
|
||||
-Wno-deprecated-declarations
|
||||
-Wno-unused-function
|
||||
-Wno-unused-private-field
|
||||
-Wno-dynamic-exception-spec
|
||||
-fno-builtin-malloc
|
||||
-fno-builtin-free
|
||||
-fno-builtin-realloc
|
||||
@ -20,6 +19,10 @@ add_definitions(
|
||||
-fno-builtin-pvalloc
|
||||
)
|
||||
|
||||
if(CMAKE_CXX_COMPILER_ID STREQUAL "Clang" AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 3.9)
|
||||
add_definitions( -Wno-dynamic-exception-spec )
|
||||
endif()
|
||||
|
||||
if(CMAKE_SYSTEM MATCHES "FreeBSD" AND CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
|
||||
add_definitions(-Wno-unused-but-set-variable)
|
||||
endif()
|
||||
|
@ -28,3 +28,5 @@ find_package (Threads)
|
||||
target_link_libraries(zkutil ${ZOOKEEPER_LIBRARY} ${Poco_Foundation_LIBRARY} ${CMAKE_THREAD_LIBS_INIT} string_utils)
|
||||
|
||||
add_subdirectory (src)
|
||||
|
||||
add_subdirectory (zookeeper-cli)
|
||||
|
@ -1,6 +1,3 @@
|
||||
add_executable(zkutil_test zkutil_test.cpp)
|
||||
target_link_libraries(zkutil_test zkutil dbms ${LINE_EDITING_LIBS})
|
||||
|
||||
add_executable(zkutil_test_commands zkutil_test_commands.cpp)
|
||||
target_link_libraries(zkutil_test_commands zkutil dbms)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user