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 /src/wallet | |
parent | add IOS CMAKE toolchain (diff) | |
download | monero-f5bd346573aacba601c948038e39aed24c8c069e.tar.xz |
IOS CMAKE build settings
Diffstat (limited to 'src/wallet')
-rw-r--r-- | src/wallet/CMakeLists.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/wallet/CMakeLists.txt b/src/wallet/CMakeLists.txt index aed021b9c..2e7610b64 100644 --- a/src/wallet/CMakeLists.txt +++ b/src/wallet/CMakeLists.txt @@ -132,8 +132,13 @@ if (BUILD_GUI_DEPS) list(APPEND objlibs $<TARGET_OBJECTS:obj_${lib}>) # matches naming convention in src/CMakeLists.txt endforeach() add_library(wallet_merged STATIC ${objlibs}) + if(IOS) + set(lib_folder lib-${ARCH}) + else() + set(lib_folder lib) + endif() install(TARGETS wallet_merged - ARCHIVE DESTINATION lib) + ARCHIVE DESTINATION ${lib_folder}) install(FILES ${wallet_api_headers} DESTINATION include/wallet) |