mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
347579ce46
* contrib: cctz as submodule. update cctz. * pbuilder: add ubuntu bionic, devel * Cmake: mark system includes as SYSTEM * Build fixes * fix * Fix package without compiler * Better * fix * fix * fix * Build fix * fix * fix * fix * Cmake: Add SYSTEM to includes for external libs
9 lines
500 B
CMake
9 lines
500 B
CMake
add_library (clickhouse-benchmark-lib ${SPLIT_SHARED} Benchmark.cpp)
|
|
target_link_libraries (clickhouse-benchmark-lib clickhouse-client-lib clickhouse_common_io ${Boost_PROGRAM_OPTIONS_LIBRARY})
|
|
target_include_directories (clickhouse-benchmark-lib SYSTEM PRIVATE ${PCG_RANDOM_INCLUDE_DIR})
|
|
|
|
if (CLICKHOUSE_SPLIT_BINARY)
|
|
add_executable (clickhouse-benchmark clickhouse-benchmark.cpp)
|
|
target_link_libraries (clickhouse-benchmark clickhouse-benchmark-lib clickhouse_aggregate_functions)
|
|
endif ()
|