mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
b4339f266d
* Fix shared build * Major default libs refactor * Fix build with gcc_eh * Link all libraries as a big group. * Use global interface library as a group * Build capnproto using our cmake * Use only internal libunwind
27 lines
695 B
CMake
27 lines
695 B
CMake
if (NOT NO_WERROR)
|
|
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror")
|
|
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Werror")
|
|
endif ()
|
|
|
|
if (USE_DEBUG_HELPERS)
|
|
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -include ${CMAKE_CURRENT_SOURCE_DIR}/libcommon/include/common/iostream_debug_helpers.h")
|
|
endif ()
|
|
|
|
add_subdirectory (libcommon)
|
|
add_subdirectory (libloggers)
|
|
add_subdirectory (libdaemon)
|
|
|
|
if (USE_INTERNAL_MEMCPY)
|
|
add_subdirectory (libmemcpy)
|
|
endif()
|
|
|
|
if (USE_MYSQL)
|
|
add_subdirectory (libmysqlxx)
|
|
endif ()
|
|
|
|
if (USE_INTERNAL_CONSISTENT_HASHING_LIBRARY)
|
|
add_subdirectory (consistent-hashing)
|
|
endif ()
|
|
add_subdirectory (consistent-hashing-sumbur)
|
|
add_subdirectory (libwidechar_width)
|