From b2ac939eb3e2c12c43b21e3295675cfac0315e54 Mon Sep 17 00:00:00 2001 From: iDunk5400 Date: Sat, 11 Feb 2017 17:00:55 +0100 Subject: [PATCH] Fix GUI building after libcryptonote_core was split (#1626) --- src/wallet/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 $) # matches naming convention in src/CMakeLists.txt