diff options
| author | xiphon <xiphon@protonmail.com> | 2020-07-07 23:04:47 +0000 |
|---|---|---|
| committer | xiphon <xiphon@protonmail.com> | 2020-07-09 15:23:04 +0000 |
| commit | d93102296349f46b81c159b9f2ebe9ec75f50cb8 (patch) | |
| tree | b67cbee0847b35fb9c99256d4320251546aeac9c /src | |
| parent | b7b12212217ebc5d6fe9d1f49b7c3abed42449da (diff) | |
| download | monzero-gui-d93102296349f46b81c159b9f2ebe9ec75f50cb8.tar.gz monzero-gui-d93102296349f46b81c159b9f2ebe9ec75f50cb8.tar.xz monzero-gui-d93102296349f46b81c159b9f2ebe9ec75f50cb8.zip | |
cmake: implement MacOS 'release' build + CI support
Diffstat (limited to 'src')
| -rw-r--r-- | src/CMakeLists.txt | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 8800c2fb..23af9a05 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -44,13 +44,16 @@ file(GLOB SOURCE_FILES "libwalletqt/Subaddress.h" "libwalletqt/SubaddressAccount.h" "libwalletqt/UnsignedTransaction.h" - "daemon/*.h" - "daemon/*.cpp" - "model/*.h" - "model/*.cpp" - "qt/*.h" + "daemon/*.h" + "daemon/*.cpp" + "model/*.h" + "model/*.cpp" + "qt/*.h" "qt/*.cpp" ) +if(APPLE) + list(APPEND SOURCE_FILES "qt/macoshelper.mm") +endif() if(ENABLE_PASS_STRENGTH_METER) file(GLOB PASS_STRENGTH_FILES @@ -130,7 +133,7 @@ target_link_libraries(monero-wallet-gui wallet_merged ${LMDB_LIBRARY} epee - unbound + ${UNBOUND_LIBRARY} ${SODIUM_LIBRARY} easylogging blockchain_db |
