mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-14 03:25:15 +00:00
2a7813049e
* Wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * Do not use ccache if ccache defined in CMAKE_CXX_COMPILER_LAUNCHER * wip * wip * wip * wip * wip * wip * wip * Config: Allow multiple dictionaries_config * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * clean * wip * clean * clean * wip * clean * clean * wip * wip * clean * clean * clean * clean * clean * Requested changes * Reqested changes * Requested changes * Requested changes * Requested changes * Requested changes * requested changes * Requested changes * Requested changes * requested changes * Requested changes * fix * Requested changes * Requested changes * fix * Requested changes * Requested changes
14 lines
761 B
CMake
14 lines
761 B
CMake
|
|
add_library (dictionary_library SHARED "dictionary_library.cpp")
|
|
target_include_directories (dictionary_library PRIVATE ${DBMS_INCLUDE_DIR})
|
|
add_library (dictionary_library_c SHARED "dictionary_library_c.c")
|
|
target_include_directories (dictionary_library_c PRIVATE ${DBMS_INCLUDE_DIR})
|
|
add_library (dictionary_library_empty SHARED "dictionary_library_empty.cpp")
|
|
target_include_directories (dictionary_library_empty PRIVATE ${DBMS_INCLUDE_DIR})
|
|
|
|
# Don't change lib name in debug build
|
|
# because result .so will be pointed in dictionary_*.xml
|
|
set_target_properties(dictionary_library PROPERTIES DEBUG_POSTFIX "")
|
|
set_target_properties(dictionary_library_c PROPERTIES DEBUG_POSTFIX "")
|
|
set_target_properties(dictionary_library_empty PROPERTIES DEBUG_POSTFIX "")
|