diff options
author | Jaquee <jaquee.monero@gmail.com> | 2017-04-02 12:19:25 +0200 |
---|---|---|
committer | Jaquee <jaquee.monero@gmail.com> | 2017-04-03 18:38:50 +0200 |
commit | f5bd346573aacba601c948038e39aed24c8c069e (patch) | |
tree | 7cc11ce2bb2195ef4d11c54b34f20918e3fdb455 /external/unbound | |
parent | add IOS CMAKE toolchain (diff) | |
download | monero-f5bd346573aacba601c948038e39aed24c8c069e.tar.xz |
IOS CMAKE build settings
Diffstat (limited to 'external/unbound')
-rw-r--r-- | external/unbound/CMakeLists.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/external/unbound/CMakeLists.txt b/external/unbound/CMakeLists.txt index d27997eaa..94294013f 100644 --- a/external/unbound/CMakeLists.txt +++ b/external/unbound/CMakeLists.txt @@ -215,6 +215,11 @@ endif () if (INSTALL_VENDORED_LIBUNBOUND) + if(IOS) + set(lib_folder lib-${ARCH}) + else() + set(lib_folder lib) + endif() install(TARGETS unbound - ARCHIVE DESTINATION lib) + ARCHIVE DESTINATION ${lib_folder}) endif() |