Fix linking on OS X, which does not have librt.
This commit is contained in:
parent
f6ddafabd6
commit
6bcc2c187a
@ -38,7 +38,11 @@ SET (HDRS
|
|||||||
if(NOT MSVC)
|
if(NOT MSVC)
|
||||||
add_library(OSSupport ${SRCS} ${HDRS})
|
add_library(OSSupport ${SRCS} ${HDRS})
|
||||||
|
|
||||||
if(UNIX)
|
if(NOT APPLE)
|
||||||
target_link_libraries(OSSupport pthread rt)
|
target_link_libraries(OSSupport rt)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
if(UNIX)
|
||||||
|
target_link_libraries(OSSupport pthread)
|
||||||
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
Loading…
Reference in New Issue
Block a user