ClickHouse/utils/iotest/CMakeLists.txt
Vladimir Smirnov d36f52502e Make it compilable on OS X
It's still hackish and dirty, but server and client compies.

Server starts, but throwes meaningless exception on any query.

Client seems to be working fine.

Linux compilation might (but shouldn't) be broken (not tested).
2016-11-01 17:59:21 +01:00

11 lines
303 B
CMake

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)
if (NOT APPLE)
add_executable (iotest_aio iotest_aio.cpp ${SRCS})
target_link_libraries (iotest_aio dbms)
endif()