ClickHouse/cmake/find_rt.cmake

11 lines
210 B
CMake
Raw Normal View History

if (APPLE)
# lib from libs/libcommon
set (RT_LIBRARY "apple_rt")
2018-08-05 08:54:57 +00:00
elseif (OS_FREEBSD)
find_library (RT_LIBRARY rt)
else ()
set (RT_LIBRARY "")
endif ()
message(STATUS "Using rt: ${RT_LIBRARY}")