diff options
author | redfish <redfish@galactica.pw> | 2017-10-13 15:36:24 +0000 |
---|---|---|
committer | redfish <redfish@galactica.pw> | 2017-10-13 15:37:52 +0000 |
commit | b92d3f96c07bd1dfe763ab775e9aff55621f47f2 (patch) | |
tree | 0d2ef25b5bbdea9083d4f47aa927ca4c84afe058 /external | |
parent | Merge pull request #2548 (diff) | |
download | monero-b92d3f96c07bd1dfe763ab775e9aff55621f47f2.tar.xz |
cmake: fix shared library build
Diffstat (limited to 'external')
-rw-r--r-- | external/easylogging++/CMakeLists.txt | 3 |
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() |