mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
23 lines
472 B
CMake
23 lines
472 B
CMake
if (NOT NO_WERROR)
|
|
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror")
|
|
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Werror")
|
|
endif ()
|
|
|
|
add_subdirectory (libcommon)
|
|
add_subdirectory (libpocoext)
|
|
add_subdirectory (libdaemon)
|
|
|
|
if (USE_INTERNAL_MEMCPY)
|
|
add_subdirectory (libmemcpy)
|
|
endif()
|
|
|
|
if (GLIBC_COMPATIBILITY)
|
|
add_subdirectory (libglibc-compatibility)
|
|
endif ()
|
|
|
|
if (USE_MYSQL)
|
|
add_subdirectory (libmysqlxx)
|
|
endif ()
|
|
|
|
add_subdirectory (libconsistent-hashing)
|