mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
dd2371e071
* Split ComplexKeyCacheDictionary to faster compile (part2) * Dictionaries as lib WIP * wip * clean * Fix build with old capnp * fix * wip * fixes * fix * clean * clean * clean * wip * wip * wip * flat * wip * cache * clean * wip * faster * fix style * fixes * clean * clean * Split CacheDictionary.cpp for faster compile * fix * fix * Less memory usage while compiling * missing file * format * Update registerDictionaries.h * clean
56 lines
1.9 KiB
CMake
56 lines
1.9 KiB
CMake
include(${ClickHouse_SOURCE_DIR}/cmake/dbms_glob_sources.cmake)
|
|
|
|
add_headers_and_sources(clickhouse_functions .)
|
|
add_headers_and_sources(clickhouse_functions ./GatherUtils)
|
|
add_headers_and_sources(clickhouse_functions ./Conditional)
|
|
|
|
|
|
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})
|
|
|
|
target_include_directories (clickhouse_functions SYSTEM BEFORE PUBLIC ${DIVIDE_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})
|
|
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)
|
|
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()
|