mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-16 03:12:43 +00:00
68 lines
1.6 KiB
CMake
68 lines
1.6 KiB
CMake
set (SRCS
|
|
argsToConfig.cpp
|
|
coverage.cpp
|
|
demangle.cpp
|
|
getFQDNOrHostName.cpp
|
|
getMemoryAmount.cpp
|
|
getPageSize.cpp
|
|
getThreadId.cpp
|
|
JSON.cpp
|
|
LineReader.cpp
|
|
mremap.cpp
|
|
phdr_cache.cpp
|
|
preciseExp10.cpp
|
|
setTerminalEcho.cpp
|
|
shift10.cpp
|
|
sleep.cpp
|
|
terminalColors.cpp
|
|
errnoToString.cpp
|
|
StringRef.cpp
|
|
)
|
|
|
|
if (ENABLE_REPLXX)
|
|
list (APPEND SRCS ReplxxLineReader.cpp)
|
|
endif ()
|
|
|
|
if (USE_DEBUG_HELPERS)
|
|
get_target_property(MAGIC_ENUM_INCLUDE_DIR magic_enum INTERFACE_INCLUDE_DIRECTORIES)
|
|
set (INCLUDE_DEBUG_HELPERS "-I\"${MAGIC_ENUM_INCLUDE_DIR}\" -include \"${ClickHouse_SOURCE_DIR}/base/base/iostream_debug_helpers.h\"")
|
|
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${INCLUDE_DEBUG_HELPERS}")
|
|
endif ()
|
|
|
|
add_library (common ${SRCS})
|
|
|
|
if (WITH_COVERAGE)
|
|
target_compile_definitions(common PUBLIC WITH_COVERAGE=1)
|
|
else ()
|
|
target_compile_definitions(common PUBLIC WITH_COVERAGE=0)
|
|
endif ()
|
|
|
|
if (USE_INTERNAL_CCTZ)
|
|
set_source_files_properties(DateLUTImpl.cpp PROPERTIES COMPILE_DEFINITIONS USE_INTERNAL_CCTZ)
|
|
endif()
|
|
|
|
target_include_directories(common PUBLIC .. "${CMAKE_CURRENT_BINARY_DIR}/..")
|
|
|
|
if (OS_DARWIN AND NOT MAKE_STATIC_LIBRARIES)
|
|
target_link_libraries(common PUBLIC -Wl,-U,_inside_main)
|
|
endif()
|
|
|
|
target_link_libraries (common
|
|
PUBLIC
|
|
${CITYHASH_LIBRARIES}
|
|
boost::headers_only
|
|
boost::system
|
|
Poco::Net
|
|
Poco::Net::SSL
|
|
Poco::Util
|
|
Poco::Foundation
|
|
replxx
|
|
cctz
|
|
fmt
|
|
magic_enum
|
|
)
|
|
|
|
if (ENABLE_TESTS)
|
|
add_subdirectory (tests)
|
|
endif ()
|