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 | |
| parent | 86e9de588c2b550ff5a005d0fcc8445fd5f58baa (diff) | |
| download | monzero-core-b92d3f96c07bd1dfe763ab775e9aff55621f47f2.tar.gz monzero-core-b92d3f96c07bd1dfe763ab775e9aff55621f47f2.tar.xz monzero-core-b92d3f96c07bd1dfe763ab775e9aff55621f47f2.zip | |
cmake: fix shared library build
| -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() |
