diff options
-rw-r--r-- | src/core/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt index ee0e39a1..c69c325d 100644 --- a/src/core/CMakeLists.txt +++ b/src/core/CMakeLists.txt @@ -80,6 +80,10 @@ target_link_libraries(gpgfrontend_core PUBLIC gpgme assuan gpg-error) target_link_libraries(gpgfrontend_core PUBLIC OpenSSL::SSL OpenSSL::Crypto) # link boost libraries target_link_libraries(gpgfrontend_core PUBLIC ${Boost_LIBRARIES}) +if(MINGW) + # for uuid ability in mingw + target_link_libraries(gpgfrontend_core PUBLIC bcrypt) +endif() # link libarchive target_link_libraries(gpgfrontend_core PRIVATE archive) |