mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
d36f52502e
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).
11 lines
303 B
CMake
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()
|