mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
d6833a0d55
* Fix .h compile * Cmake: remove global include_directories * boost include hide * fix cctz * add \n
12 lines
349 B
CMake
12 lines
349 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 AND NOT CMAKE_SYSTEM MATCHES "FreeBSD")
|
|
add_executable (iotest_aio iotest_aio.cpp ${SRCS})
|
|
target_link_libraries (iotest_aio dbms)
|
|
endif()
|