diff options
Diffstat (limited to '')
| -rw-r--r-- | appveyor.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml index 1c390cdd5..ec9ca3747 100644 --- a/appveyor.yml +++ b/appveyor.yml | |||
| @@ -131,6 +131,12 @@ after_build: | |||
| 131 | foreach ($file in $MingwDLLs) { | 131 | foreach ($file in $MingwDLLs) { |
| 132 | Copy-Item -path "C:/msys64/mingw64/bin/$file" -force -destination "$RELEASE_DIST" | 132 | Copy-Item -path "C:/msys64/mingw64/bin/$file" -force -destination "$RELEASE_DIST" |
| 133 | } | 133 | } |
| 134 | # the above list copies a few extra debug dlls that aren't needed (thanks globbing patterns!) | ||
| 135 | # so we can remove them by hardcoding another list of extra dlls to remove | ||
| 136 | $DebugDLLs = "libicudtd*.dll","libicuind*.dll","libicuucd*.dll" | ||
| 137 | foreach ($file in $DebugDLLs) { | ||
| 138 | Remove-Item -path "$RELEASE_DIST/$file" | ||
| 139 | } | ||
| 134 | 140 | ||
| 135 | # copy the qt windows plugin dll to platforms | 141 | # copy the qt windows plugin dll to platforms |
| 136 | Copy-Item -path "C:/msys64/mingw64/share/qt5/plugins/platforms/qwindows.dll" -force -destination "$RELEASE_DIST/platforms" | 142 | Copy-Item -path "C:/msys64/mingw64/share/qt5/plugins/platforms/qwindows.dll" -force -destination "$RELEASE_DIST/platforms" |