diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-09-29 22:14:56 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-09-29 22:14:56 +0200 |
commit | 50f94729112e9ad6e6dc412b096a685fbe7b2b04 (patch) | |
tree | 7de19d5855cc1166eb6296dfcac18fc19bfe6e0a /CMakeLists.txt | |
parent | Merge pull request #4446 (diff) | |
parent | Make depends use self built clang for darwin (diff) | |
download | monero-50f94729112e9ad6e6dc412b096a685fbe7b2b04.tar.xz |
Merge pull request #4448
6a781408 Make depends use self built clang for darwin (TheCharlatan)
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index a7746371e..fc0ecb14b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -883,10 +883,14 @@ list(APPEND EXTRA_LIBRARIES ${CMAKE_DL_LIBS}) if (HIDAPI_FOUND) if (APPLE) - find_library(COREFOUNDATION CoreFoundation) - find_library(IOKIT IOKit) - list(APPEND EXTRA_LIBRARIES ${IOKIT}) - list(APPEND EXTRA_LIBRARIES ${COREFOUNDATION}) + if(DEPENDS) + list(APPEND EXTRA_LIBRARIES "-framework Foundation -framework IOKit") + else() + find_library(COREFOUNDATION CoreFoundation) + find_library(IOKIT IOKit) + list(APPEND EXTRA_LIBRARIES ${IOKIT}) + list(APPEND EXTRA_LIBRARIES ${COREFOUNDATION}) + endif() endif() if (WIN32) list(APPEND EXTRA_LIBRARIES setupapi) |