mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-14 11:33:46 +00:00
12 lines
397 B
CMake
12 lines
397 B
CMake
|
|
add_executable (iotest iotest.cpp ${SRCS})
|
|
target_link_libraries (iotest clickhouse_common_io)
|
|
|
|
add_executable (iotest_nonblock iotest_nonblock.cpp ${SRCS})
|
|
target_link_libraries (iotest_nonblock clickhouse_common_io)
|
|
|
|
if (NOT APPLE AND NOT CMAKE_SYSTEM MATCHES "FreeBSD")
|
|
add_executable (iotest_aio iotest_aio.cpp ${SRCS})
|
|
target_link_libraries (iotest_aio clickhouse_common_io)
|
|
endif()
|