aboutsummaryrefslogtreecommitdiff
path: root/external
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2017-05-06 19:41:25 +0200
committerRiccardo Spagni <ric@spagni.net>2017-05-06 19:41:25 +0200
commit694470fae705edb06bbfaae9ce327a052adba84d (patch)
tree2f5dc26dd2001101ec36731e1b6a21436f837b2a /external
parentMerge pull request #2012 (diff)
parentGUI: easylogging++ install target (diff)
downloadmonero-694470fae705edb06bbfaae9ce327a052adba84d.tar.xz
Merge pull request #2015
b7ae0911 GUI: easylogging++ install target (Jaquee)
Diffstat (limited to 'external')
-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()
+