mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
17 lines
372 B
CMake
17 lines
372 B
CMake
if (APPLE)
|
|
set (RT_LIBRARIES "apple_rt")
|
|
else ()
|
|
if (USE_STATIC_LIBRARIES)
|
|
set (RT_LIBRARIES "librt.a")
|
|
else ()
|
|
set (RT_LIBRARIES "rt")
|
|
endif ()
|
|
endif ()
|
|
|
|
function (target_link_rt_by_force TARGET)
|
|
if (NOT APPLE)
|
|
set (FLAGS "-Wl,-no-as-needed -lrt -Wl,-as-needed")
|
|
set_property (TARGET ${TARGET} APPEND PROPERTY LINK_FLAGS "${FLAGS}")
|
|
endif ()
|
|
endfunction ()
|