Skip to content

Commit 52190c3

Browse files
committed
fix optional_dlls in cmake wrapper
1 parent cb979cf commit 52190c3

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

DLLDeployer.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ function(DLLD_add_deploy target_name)
169169

170170
list(APPEND flags "\"--deep-search-dir=${CMAKE_BINARY_DIR}\"")
171171

172-
foreach (item in ${DLLD_add_deploy_OPTIONAL_DLLS})
172+
foreach (item ${DLLD_add_deploy_OPTIONAL_DLLS})
173173
list(APPEND flags "\"--optional-dlls=${item}\"")
174174
endforeach ()
175175

tests/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ QD_add_deployqt(test INSTALL_MODE
2626
FLAGS "-release;--no-translations")
2727
DLLD_add_deploy(test INSTALL_MODE COPY_VC_REDIST VERBOSE
2828
INSTALL_DESTINATION bin
29-
OPTIONAL_DLLS "generic/*.dll;imageformats/*.dll;networkinformation/*.dll;platforms/*.dll;styles/*.dll;tls/*.dll")
29+
OPTIONAL_DLLS "generic/*.dll;imageformats/*.dll;networkinformation/*.dll;styles/*.dll;tls/*.dll")
3030

3131
include(CPack)

0 commit comments

Comments
 (0)