aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaquee <jaquee.monero@gmail.com>2017-05-06 17:07:36 +0200
committerJaquee <jaquee.monero@gmail.com>2017-05-06 17:07:36 +0200
commitb7ae09111d42a774faa01f340d836d704a84a77d (patch)
tree2f5dc26dd2001101ec36731e1b6a21436f837b2a
parentMerge pull request #2012 (diff)
downloadmonero-b7ae09111d42a774faa01f340d836d704a84a77d.tar.xz
GUI: easylogging++ install target
-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()
+