diff options
-rw-r--r-- | src/core/CMakeLists.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index b5dd3571..bf64d15a 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -74,6 +74,13 @@ endif () # spdlog target_link_libraries(gpgfrontend_core PRIVATE spdlog) +if(MINGW) + set_target_properties(spdlog + PROPERTIES + LIBRARY_OUTPUT_DIRECTORY "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}" + RUNTIME_OUTPUT_DIRECTORY "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}" + ) +endif() # configure libarchive |