diff options
author | iDunk5400 <iDunk5400@users.noreply.github.com> | 2017-02-11 17:00:55 +0100 |
---|---|---|
committer | iDunk5400 <iDunk5400@users.noreply.github.com> | 2017-02-11 17:00:55 +0100 |
commit | b2ac939eb3e2c12c43b21e3295675cfac0315e54 (patch) | |
tree | 5db70175225ae76dcf82920fbb06b5160ad71d18 /src | |
parent | Merge pull request #1698 (diff) | |
download | monero-b2ac939eb3e2c12c43b21e3295675cfac0315e54.tar.xz |
Fix GUI building after libcryptonote_core was split (#1626)
Diffstat (limited to 'src')
-rw-r--r-- | src/wallet/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/CMakeLists.txt b/src/wallet/CMakeLists.txt index 8626001ce..3c103bc29 100644 --- a/src/wallet/CMakeLists.txt +++ b/src/wallet/CMakeLists.txt @@ -126,7 +126,7 @@ endif() # build and install libwallet_merged only if we building for GUI if (BUILD_GUI_DEPS) - set(libs_to_merge wallet cryptonote_core mnemonics common crypto ringct) + set(libs_to_merge wallet cryptonote_core cryptonote_basic mnemonics common crypto ringct) foreach(lib ${libs_to_merge}) list(APPEND objlibs $<TARGET_OBJECTS:obj_${lib}>) # matches naming convention in src/CMakeLists.txt |