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
7 lines
367 B
CMake
7 lines
367 B
CMake
add_library (clickhouse-format-lib ${LINK_MODE} Format.cpp)
|
|
target_link_libraries (clickhouse-format-lib PRIVATE dbms clickhouse_common_io clickhouse_parsers ${Boost_PROGRAM_OPTIONS_LIBRARY})
|
|
if (CLICKHOUSE_SPLIT_BINARY)
|
|
add_executable (clickhouse-format clickhouse-format.cpp)
|
|
target_link_libraries (clickhouse-format PRIVATE clickhouse-format-lib)
|
|
endif ()
|