From d24f813f3f2a05c112e803e4256b53535895fc98 Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Wed, 14 Jul 2021 11:49:10 +1200 Subject: Initial mirror commit --- packaging/qt-win/copy_qtdlls.bat | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 packaging/qt-win/copy_qtdlls.bat (limited to 'packaging/qt-win/copy_qtdlls.bat') diff --git a/packaging/qt-win/copy_qtdlls.bat b/packaging/qt-win/copy_qtdlls.bat new file mode 100644 index 0000000..09b372d --- /dev/null +++ b/packaging/qt-win/copy_qtdlls.bat @@ -0,0 +1,28 @@ +call cleanup.bat + +copy %QTDIR%\bin\Qt5Core.dll . +copy %QTDIR%\bin\Qt5Gui.dll . +copy %QTDIR%\bin\Qt5Widgets.dll . +copy %QTDIR%\bin\Qt5Network.dll . +copy %QTDIR%\bin\libwinpthread-1.dll . +copy %QTDIR%\bin\icuin51.dll . +copy %QTDIR%\bin\icuuc51.dll . +copy %QTDIR%\bin\icudt51.dll . +copy %QTDIR%\bin\libgcc_s_dw2-1.dll . +copy %QTDIR%\bin\libstdc*-6.dll . + +set QTIMG_PLUGINS=%QTDIR%\plugins\imageformats +set DSTIMG_PLUGINS=.\imageformats +mkdir %DSTIMG_PLUGINS% +copy %QTIMG_PLUGINS%\qgif.dll %DSTIMG_PLUGINS% +copy %QTIMG_PLUGINS%\qico.dll %DSTIMG_PLUGINS% +copy %QTIMG_PLUGINS%\qjpeg.dll %DSTIMG_PLUGINS% +copy %QTIMG_PLUGINS%\qmng.dll %DSTIMG_PLUGINS% +copy %QTIMG_PLUGINS%\qsvg.dll %DSTIMG_PLUGINS% +copy %QTIMG_PLUGINS%\qtga.dll %DSTIMG_PLUGINS% +copy %QTIMG_PLUGINS%\qtiff.dll %DSTIMG_PLUGINS% + +set QT_PLATFORMS=%QTDIR%\plugins\platforms +set DST_PLATFORMS=.\platforms +mkdir %DST_PLATFORMS% +copy %QT_PLATFORMS%\qwindows.dll %DST_PLATFORMS% -- cgit