diff options
author | saturneric <[email protected]> | 2024-07-29 14:52:03 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-07-29 14:52:03 +0000 |
commit | 2aac0909385b76a9e9cb8c94d25e37529dde14ba (patch) | |
tree | ca4971d982126d6faa9cf5f9fc2672cd79229445 | |
parent | feat: support application only build type on windows (diff) | |
download | GpgFrontend-2aac0909385b76a9e9cb8c94d25e37529dde14ba.tar.gz GpgFrontend-2aac0909385b76a9e9cb8c94d25e37529dde14ba.zip |
fix: add some missing dlls
-rw-r--r-- | src/CMakeLists.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 0e8751ba..6882a696 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -276,6 +276,22 @@ if(BUILD_APPLICATION AND MINGW) unset(_libDllPath) file(GLOB _libDllPath "${MSYS64_BIN_PATH}/libgpgfrontend_*.dll") list(APPEND ALL_RUNTIME_DEP_PATH_LIST ${_libDllPath}) + + unset(_libDllPath) + file(GLOB _libDllPath "${MSYS64_BIN_PATH}/libmimalloc*.dll") + list(APPEND ALL_RUNTIME_DEP_PATH_LIST ${_libDllPath}) + + unset(_libDllPath) + file(GLOB _libDllPath "${MSYS64_BIN_PATH}/mimalloc*.dll") + list(APPEND ALL_RUNTIME_DEP_PATH_LIST ${_libDllPath}) + + unset(_libDllPath) + file(GLOB _libDllPath "${MSYS64_BIN_PATH}/libarchive*.dll") + list(APPEND ALL_RUNTIME_DEP_PATH_LIST ${_libDllPath}) + + unset(_libDllPath) + file(GLOB _libDllPath "${MSYS64_BIN_PATH}/libgtest*.dll") + list(APPEND ALL_RUNTIME_DEP_PATH_LIST ${_libDllPath}) endif() # dll with only name |