mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
09f3d68f6e
* Try fix macos server run * Doc macos build # Please enter the commit message for your changes. Lines starting * CLICKHOUSE-3957 start wip * tests wip * wip * wip * wip * wip * wip * wip * wip * fix * fix * Making logger for clickhouse-local * fixes * wip * wip * wip * wip * clean * cf * wip * fix * Update CMakeLists.txt * Update argsToConfig.h * Update argsToConfig.cpp * Update ExtendedLogChannel.h * Update OwnPatternFormatter.cpp
31 lines
776 B
CMake
31 lines
776 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 (GLIBC_COMPATIBILITY)
|
|
add_subdirectory (libglibc-compatibility)
|
|
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)
|