diff options
author | James Rowe <jroweboy@gmail.com> | 2017-09-06 16:26:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-06 16:26:38 +0200 |
commit | 4af793c5919c2ce7dd26cc0b1d670135cb8a5246 (patch) | |
tree | 4fed077e1a26d03ddbef57835f74e124536d8c7b | |
parent | Merge pull request #2914 from wwylele/fresnel-fix (diff) | |
parent | Remove excess debug dlls for mingw build (diff) | |
download | yuzu-4af793c5919c2ce7dd26cc0b1d670135cb8a5246.tar yuzu-4af793c5919c2ce7dd26cc0b1d670135cb8a5246.tar.gz yuzu-4af793c5919c2ce7dd26cc0b1d670135cb8a5246.tar.bz2 yuzu-4af793c5919c2ce7dd26cc0b1d670135cb8a5246.tar.lz yuzu-4af793c5919c2ce7dd26cc0b1d670135cb8a5246.tar.xz yuzu-4af793c5919c2ce7dd26cc0b1d670135cb8a5246.tar.zst yuzu-4af793c5919c2ce7dd26cc0b1d670135cb8a5246.zip |
-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: foreach ($file in $MingwDLLs) { Copy-Item -path "C:/msys64/mingw64/bin/$file" -force -destination "$RELEASE_DIST" } + # the above list copies a few extra debug dlls that aren't needed (thanks globbing patterns!) + # so we can remove them by hardcoding another list of extra dlls to remove + $DebugDLLs = "libicudtd*.dll","libicuind*.dll","libicuucd*.dll" + foreach ($file in $DebugDLLs) { + Remove-Item -path "$RELEASE_DIST/$file" + } # copy the qt windows plugin dll to platforms Copy-Item -path "C:/msys64/mingw64/share/qt5/plugins/platforms/qwindows.dll" -force -destination "$RELEASE_DIST/platforms" |