diff options
author | Jaquee <jaquee.monero@gmail.com> | 2017-05-06 17:07:36 +0200 |
---|---|---|
committer | Jaquee <jaquee.monero@gmail.com> | 2017-05-06 17:07:36 +0200 |
commit | b7ae09111d42a774faa01f340d836d704a84a77d (patch) | |
tree | 2f5dc26dd2001101ec36731e1b6a21436f837b2a /external | |
parent | Merge pull request #2012 (diff) | |
download | monero-b7ae09111d42a774faa01f340d836d704a84a77d.tar.xz |
GUI: easylogging++ install target
Diffstat (limited to 'external')
-rw-r--r-- | external/easylogging++/CMakeLists.txt | 11 |
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() + |