cmake: don't try to link with atomic on Apple

-latomic is necessary with Clang on Linux, but
apparently, on OSX it's not found.
pull/95/head
redfish 8 years ago
parent 19349d7870
commit f07f120e5d

@ -460,7 +460,7 @@ endif()
list(APPEND EXTRA_LIBRARIES ${CMAKE_DL_LIBS})
if(NOT MINGW)
if(NOT MINGW AND NOT APPLE)
find_library(ATOMIC atomic)
list(APPEND EXTRA_LIBRARIES ${ATOMIC})
endif()

Loading…
Cancel
Save