ClickHouse/dbms/src/Processors/tests/CMakeLists.txt
2019-04-03 13:13:25 +03:00

16 lines
985 B
CMake

add_executable (processors_test processors_test.cpp)
add_executable (processors_test_chain processors_test_chain.cpp)
add_executable (processors_test_merge processors_test_merge.cpp)
add_executable (processors_test_merging_sorted_transform processors_test_merging_sorted_transform.cpp)
add_executable (processors_test_merge_sorting_transform processors_test_merge_sorting_transform.cpp)
add_executable (processors_test_expand_pipeline processors_test_expand_pipeline.cpp)
add_executable (processors_test_aggregation processors_test_aggregation.cpp)
target_link_libraries (processors_test dbms)
target_link_libraries (processors_test_chain dbms)
target_link_libraries (processors_test_merge dbms)
target_link_libraries (processors_test_expand_pipeline dbms)
target_link_libraries (processors_test_merging_sorted_transform dbms)
target_link_libraries (processors_test_merge_sorting_transform dbms)
target_link_libraries (processors_test_aggregation dbms clickhouse_aggregate_functions)