mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
CMakeLists.txt: only use libatomic when found
This commit is contained in:
parent
5c85da5a73
commit
7d21c9b573
@ -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…
Reference in New Issue
Block a user