mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
c7cb8d2db5
* CLICKHOUSE-4109 mlock clickhouse * wip * Fix * wip * fix * fix * better place * wip * clean * tidy * fix * Freebsd fix * Fix compile on ARM * Freebsd fixes * Simpler test * Fuzzy test: dont skip already fixed functions
59 lines
2.1 KiB
CMake
59 lines
2.1 KiB
CMake
include(${ClickHouse_SOURCE_DIR}/cmake/dbms_glob_sources.cmake)
|
|
|
|
add_headers_and_sources(clickhouse_functions ./GatherUtils)
|
|
add_headers_and_sources(clickhouse_functions .)
|
|
|
|
|
|
list(REMOVE_ITEM clickhouse_functions_sources IFunction.cpp FunctionFactory.cpp FunctionHelpers.cpp)
|
|
list(REMOVE_ITEM clickhouse_functions_headers IFunction.h FunctionFactory.h FunctionHelpers.h)
|
|
|
|
add_library(clickhouse_functions ${LINK_MODE} ${clickhouse_functions_sources})
|
|
|
|
target_link_libraries(clickhouse_functions
|
|
PUBLIC
|
|
dbms
|
|
PRIVATE
|
|
clickhouse_dictionaries
|
|
${CONSISTENT_HASHING_LIBRARY}
|
|
consistent-hashing-sumbur
|
|
${FARMHASH_LIBRARIES}
|
|
${METROHASH_LIBRARIES}
|
|
murmurhash
|
|
${BASE64_LIBRARY}
|
|
${OPENSSL_CRYPTO_LIBRARY}
|
|
${LZ4_LIBRARY})
|
|
|
|
target_include_directories (clickhouse_functions SYSTEM BEFORE PUBLIC ${DIVIDE_INCLUDE_DIR} ${METROHASH_INCLUDE_DIR})
|
|
|
|
if (CONSISTENT_HASHING_INCLUDE_DIR)
|
|
target_include_directories (clickhouse_functions PRIVATE ${CONSISTENT_HASHING_INCLUDE_DIR})
|
|
endif ()
|
|
|
|
if (CMAKE_BUILD_TYPE_UC STREQUAL "RELEASE" OR CMAKE_BUILD_TYPE_UC STREQUAL "RELWITHDEBINFO" OR CMAKE_BUILD_TYPE_UC STREQUAL "MINSIZEREL")
|
|
# Won't generate debug info for files with heavy template instantiation to achieve faster linking and lower size.
|
|
target_compile_options(clickhouse_functions PRIVATE "-g0")
|
|
endif ()
|
|
|
|
if (USE_ICU)
|
|
target_link_libraries (clickhouse_functions PRIVATE ${ICU_LIBRARIES})
|
|
target_include_directories(clickhouse_functions SYSTEM PRIVATE ${ICU_INCLUDE_DIRS})
|
|
endif ()
|
|
|
|
if (USE_VECTORCLASS)
|
|
target_include_directories (clickhouse_functions SYSTEM BEFORE PUBLIC ${VECTORCLASS_INCLUDE_DIR})
|
|
endif ()
|
|
|
|
if (ENABLE_TESTS)
|
|
add_subdirectory (tests)
|
|
endif ()
|
|
|
|
if (USE_EMBEDDED_COMPILER)
|
|
llvm_libs_all(REQUIRED_LLVM_LIBRARIES)
|
|
target_link_libraries(clickhouse_functions PRIVATE ${REQUIRED_LLVM_LIBRARIES})
|
|
target_include_directories(clickhouse_functions SYSTEM BEFORE PUBLIC ${LLVM_INCLUDE_DIRS})
|
|
endif ()
|
|
|
|
if(USE_BASE64)
|
|
target_include_directories(clickhouse_functions SYSTEM PRIVATE ${BASE64_INCLUDE_DIR})
|
|
endif()
|