CMakeLists.txt: only use libatomic when found

pull/127/head
moneromooo-monero 6 years ago
parent 5c85da5a73
commit 7d21c9b573
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -937,7 +937,9 @@ if(ANDROID)
endif()
if(CMAKE_C_COMPILER_ID STREQUAL "Clang" AND ARCH_WIDTH EQUAL "32" AND NOT IOS AND NOT FREEBSD)
find_library(ATOMIC atomic)
list(APPEND EXTRA_LIBRARIES ${ATOMIC})
if (ATOMIC_FOUND)
list(APPEND EXTRA_LIBRARIES ${ATOMIC})
endif()
endif()
find_path(ZMQ_INCLUDE_PATH zmq.hpp)

Loading…
Cancel
Save