Skip to content

Commit

Permalink
Hotfix: add Win32 mingw32 libs into installer
Browse files Browse the repository at this point in the history
  • Loading branch information
iakov committed Jul 18, 2023
1 parent d904c44 commit 06af258
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
set -o nounset
set -o errexit

set -x
cd "$(dirname "$0")"


Expand Down Expand Up @@ -46,8 +46,10 @@ rsync -a "$QT_LIB"/Qt5Xml.dll "$PWD"/../d
rsync -a "$QT_LIB"/Qt5Script.dll "$PWD"/../data
rsync -a "$QT_LIB"/Qt5Test.dll "$PWD"/../data
rsync -a "$QT_LIB"/Qt5Concurrent.dll "$PWD"/../data
rsync -a "$QT_LIB"/ "$PWD"/../data
rsync -a --ignore-missing-args "$QT_LIB"/{libgcc_s_*-1.dll,libwinpthread-1.dll,libstdc++-6.dll} "$PWD"/../data
where \$path:lib{gcc_s_,winpthread-,stdc\+\+-}\*\.dll \
| dos2unix \
| xargs -rd \\n cygpath -au \
| rsync -a --no-relative --files-from=- / "$PWD"/../data

rsync -a "$QT_LIB"/../plugins/platforms/q{windows,offscreen,minimal}.dll "$PWD"/../data/platforms
rsync -a "$QT_LIB"/../plugins/imageformats/qsvg.dll "$PWD"/../data/imageformats
Expand Down

0 comments on commit 06af258

Please sign in to comment.