mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
11 lines
212 B
CMake
11 lines
212 B
CMake
if (APPLE)
|
|
# lib from libs/libcommon
|
|
set (RT_LIBRARY "apple_rt")
|
|
elseif (ARCH_FREEBSD)
|
|
find_library (RT_LIBRARY rt)
|
|
else ()
|
|
set (RT_LIBRARY "")
|
|
endif ()
|
|
|
|
message(STATUS "Using rt: ${RT_LIBRARY}")
|