2017-02-06 15:15:19 +00:00
|
|
|
include_directories (${ClickHouse_SOURCE_DIR}/dbms/include)
|
|
|
|
include_directories (${ClickHouse_SOURCE_DIR}/libs/libcommon/include)
|
2017-01-16 19:47:11 +00:00
|
|
|
|
2016-02-07 21:58:58 +00:00
|
|
|
add_executable (iotest iotest.cpp ${SRCS})
|
|
|
|
target_link_libraries (iotest dbms)
|
|
|
|
|
|
|
|
add_executable (iotest_nonblock iotest_nonblock.cpp ${SRCS})
|
|
|
|
target_link_libraries (iotest_nonblock dbms)
|
|
|
|
|
2016-12-24 01:03:10 +00:00
|
|
|
if (NOT APPLE AND NOT CMAKE_SYSTEM MATCHES "FreeBSD")
|
2016-10-26 22:27:38 +00:00
|
|
|
add_executable (iotest_aio iotest_aio.cpp ${SRCS})
|
|
|
|
target_link_libraries (iotest_aio dbms)
|
|
|
|
endif()
|