Browse Source

cmake: Add Qt JPEG/GIF plugins to Windows libraries

derrod 4 years ago
parent
commit
c44e225143
1 changed files with 6 additions and 2 deletions
  1. 6 2
      cmake/Modules/CopyMSVCBins.cmake

+ 6 - 2
cmake/Modules/CopyMSVCBins.cmake

@@ -173,7 +173,9 @@ file(GLOB QT_DEBUG_STYLES_BIN_FILES
 file(GLOB QT_DEBUG_ICONENGINE_BIN_FILES
 	"${Qt5Core_DIR}/../../../plugins/iconengines/qsvgicond.dll")
 file(GLOB QT_DEBUG_IMAGEFORMATS_BIN_FILES
-	"${Qt5Core_DIR}/../../../plugins/imageformats/qsvgd.dll")
+	"${Qt5Core_DIR}/../../../plugins/imageformats/qsvgd.dll"
+	"${Qt5Core_DIR}/../../../plugins/imageformats/qgifd.dll"
+	"${Qt5Core_DIR}/../../../plugins/imageformats/qjpegd.dll")
 
 
 file(GLOB QT_BIN_FILES
@@ -192,7 +194,9 @@ file(GLOB QT_STYLES_BIN_FILES
 file(GLOB QT_ICONENGINE_BIN_FILES
 	"${Qt5Core_DIR}/../../../plugins/iconengines/qsvgicon.dll")	
 file(GLOB QT_IMAGEFORMATS_BIN_FILES
-	"${Qt5Core_DIR}/../../../plugins/imageformats/qsvg.dll")	
+	"${Qt5Core_DIR}/../../../plugins/imageformats/qsvg.dll"
+	"${Qt5Core_DIR}/../../../plugins/imageformats/qgif.dll"
+	"${Qt5Core_DIR}/../../../plugins/imageformats/qjpeg.dll")
 
 file(GLOB QT_ICU_BIN_FILES
 	"${Qt5Core_DIR}/../../../bin/icu*.dll")