aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorredfish <redfish@galactica.pw>2017-09-27 00:57:02 -0400
committerredfish <redfish@galactica.pw>2017-09-27 00:57:02 -0400
commit93ed9321430d388a9966773fbf580eff03299518 (patch)
treefe63ec098d8c042397f98919eec2377bb487a2c5
parentMerge pull request #2533 (diff)
downloadmonero-93ed9321430d388a9966773fbf580eff03299518.tar.xz
cmake: add libversion and libcheckpoints to libwallet_merged
Needed to link monero-core Qt wallet.
-rw-r--r--src/wallet/CMakeLists.txt11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/wallet/CMakeLists.txt b/src/wallet/CMakeLists.txt
index fe87d0de1..b62c084be 100644
--- a/src/wallet/CMakeLists.txt
+++ b/src/wallet/CMakeLists.txt
@@ -125,7 +125,16 @@ endif()
# build and install libwallet_merged only if we building for GUI
if (BUILD_GUI_DEPS)
- set(libs_to_merge wallet cryptonote_core cryptonote_basic mnemonics common cncrypto ringct)
+ set(libs_to_merge
+ wallet
+ cryptonote_core
+ cryptonote_basic
+ mnemonics
+ common
+ cncrypto
+ ringct
+ checkpoints
+ version)
foreach(lib ${libs_to_merge})
list(APPEND objlibs $<TARGET_OBJECTS:obj_${lib}>) # matches naming convention in src/CMakeLists.txt