mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-27 10:02:01 +00:00
14 lines
463 B
CMake
14 lines
463 B
CMake
include_directories (${CMAKE_SOURCE_DIR}/dbms/include)
|
|
include_directories (${CMAKE_SOURCE_DIR}/libs/libcommon/include)
|
|
|
|
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()
|