cmake: Copy correct file for Qt imageformat plugin
During CMake configuration for 64-bit builds, CopyMSVCBins.cmake would copy plugins/imageformats/qsvg.dll from the Qt directory to additional_install_files/exec64r/imageformats/qsvg.dll (exec32r for 32-bit builds). However, it would copy plugins/iconengines/qsvgicond.dll to the corresponding debug imageformats files location, additional_install_files/exec64d/imageformats/qsvgicond.dll (or exec32d for 32-bit). This appears to have been a simple copy-paste mistake. Let's copy plugins/imageformats/qsvgd.dll instead.
This commit is contained in:
parent
f131c0c36b
commit
a7eb44b337
@ -236,7 +236,7 @@ set(ALL_IMAGEFORMATS_BIN_FILES)
|
||||
set(ALL_IMAGEFORMATS_REL_BIN_FILES
|
||||
${QT_IMAGEFORMATS_BIN_FILES})
|
||||
set(ALL_IMAGEFORMATS_DBG_BIN_FILES
|
||||
${QT_DEBUG_ICONENGINE_BIN_FILES})
|
||||
${QT_DEBUG_IMAGEFORMATS_BIN_FILES})
|
||||
|
||||
foreach(list
|
||||
ALL_BASE_BIN_FILES ALL_REL_BIN_FILES ALL_DBG_BIN_FILES
|
||||
|
Loading…
x
Reference in New Issue
Block a user