mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 14:11:58 +00:00
1d40c2c871
* try fix 1 * Better deps * fix * fix * fix * Update CMakeLists.txt * Update CMakeLists.txt * fix * fix * fix * disable old * Update find_odbc.cmake
8 lines
458 B
CMake
8 lines
458 B
CMake
add_library (clickhouse-extract-from-config-lib ${LINK_MODE} ExtractFromConfig.cpp)
|
|
target_link_libraries (clickhouse-extract-from-config-lib PRIVATE clickhouse_common_config clickhouse_common_io ${Boost_PROGRAM_OPTIONS_LIBRARY})
|
|
|
|
if (CLICKHOUSE_SPLIT_BINARY)
|
|
add_executable (clickhouse-extract-from-config clickhouse-extract-from-config.cpp)
|
|
target_link_libraries (clickhouse-extract-from-config PRIVATE clickhouse-extract-from-config-lib)
|
|
endif ()
|