aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--external/easylogging++/CMakeLists.txt11
1 files changed, 11 insertions, 0 deletions
diff --git a/external/easylogging++/CMakeLists.txt b/external/easylogging++/CMakeLists.txt
index d8d061db0..ae7d931cf 100644
--- a/external/easylogging++/CMakeLists.txt
+++ b/external/easylogging++/CMakeLists.txt
@@ -43,3 +43,14 @@ target_link_libraries(easylogging
PRIVATE
${CMAKE_THREAD_LIBS_INIT})
+# GUI/libwallet install target
+if (BUILD_GUI_DEPS)
+ if(IOS)
+ set(lib_folder lib-${ARCH})
+ else()
+ set(lib_folder lib)
+ endif()
+ install(TARGETS easylogging
+ ARCHIVE DESTINATION ${lib_folder})
+endif()
+