Selaa lähdekoodia

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.
Ryan Foster 4 vuotta sitten
vanhempi
sitoutus
a7eb44b337
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      cmake/Modules/CopyMSVCBins.cmake

+ 1 - 1
cmake/Modules/CopyMSVCBins.cmake

@@ -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