aboutsummaryrefslogtreecommitdiff
path: root/external
diff options
context:
space:
mode:
authorredfish <redfish@galactica.pw>2017-10-13 15:36:24 +0000
committerredfish <redfish@galactica.pw>2017-10-13 15:37:52 +0000
commitb92d3f96c07bd1dfe763ab775e9aff55621f47f2 (patch)
tree0d2ef25b5bbdea9083d4f47aa927ca4c84afe058 /external
parentMerge pull request #2548 (diff)
downloadmonero-b92d3f96c07bd1dfe763ab775e9aff55621f47f2.tar.xz
cmake: fix shared library build
Diffstat (limited to 'external')
-rw-r--r--external/easylogging++/CMakeLists.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/external/easylogging++/CMakeLists.txt b/external/easylogging++/CMakeLists.txt
index ae7d931cf..97d0bf571 100644
--- a/external/easylogging++/CMakeLists.txt
+++ b/external/easylogging++/CMakeLists.txt
@@ -51,6 +51,7 @@ if (BUILD_GUI_DEPS)
set(lib_folder lib)
endif()
install(TARGETS easylogging
- ARCHIVE DESTINATION ${lib_folder})
+ ARCHIVE DESTINATION ${lib_folder}
+ LIBRARY DESTINATION ${lib_folder})
endif()