1
0

Fixed potential linker errors with mingw, as it isn't MSVC and it isn't APPLE.

This commit is contained in:
archshift 2014-10-23 15:03:54 -07:00
parent 6bcc2c187a
commit 8ccb729504

View File

@ -38,11 +38,11 @@ SET (HDRS
if(NOT MSVC)
add_library(OSSupport ${SRCS} ${HDRS})
if(NOT APPLE)
target_link_libraries(OSSupport rt)
endif()
if(UNIX)
if(NOT APPLE)
target_link_libraries(OSSupport rt)
endif()
target_link_libraries(OSSupport pthread)
endif()
endif()