summaryrefslogtreecommitdiffstats
path: root/appveyor.yml
diff options
context:
space:
mode:
authorJcw87 <johnnyc.wilson@verizon.net>2018-11-16 06:53:40 +0100
committerJcw87 <johnnyc.wilson@verizon.net>2018-11-16 06:53:40 +0100
commit84364c9d4f2bf77a05a6fd5064f4236e9d25ab88 (patch)
tree422166ea9d9526de996b598262e269cccd10293e /appveyor.yml
parentInclude imageformat dependencies with releases (diff)
downloadyuzu-84364c9d4f2bf77a05a6fd5064f4236e9d25ab88.tar
yuzu-84364c9d4f2bf77a05a6fd5064f4236e9d25ab88.tar.gz
yuzu-84364c9d4f2bf77a05a6fd5064f4236e9d25ab88.tar.bz2
yuzu-84364c9d4f2bf77a05a6fd5064f4236e9d25ab88.tar.lz
yuzu-84364c9d4f2bf77a05a6fd5064f4236e9d25ab88.tar.xz
yuzu-84364c9d4f2bf77a05a6fd5064f4236e9d25ab88.tar.zst
yuzu-84364c9d4f2bf77a05a6fd5064f4236e9d25ab88.zip
Diffstat (limited to '')
-rw-r--r--appveyor.yml19
1 files changed, 10 insertions, 9 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 6d0e6522a..1d5e5c556 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -125,26 +125,27 @@ after_build:
Copy-Item -path "$CMAKE_SOURCE_DIR/license.txt" -destination $RELEASE_DIST
Copy-Item -path "$CMAKE_SOURCE_DIR/README.md" -destination $RELEASE_DIST
+ # 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"
+
+ # copy the qt windows vista style dll to platforms
+ Copy-Item -path "C:/msys64/mingw64/share/qt5/plugins/styles/qwindowsvistastyle.dll" -force -destination "$RELEASE_DIST/styles"
+
+ # copy the qt jpeg imageformat dll to platforms
+ Copy-Item -path "C:/msys64/mingw64/share/qt5/plugins/imageformats/qjpeg.dll" -force -destination "$RELEASE_DIST/imageformats"
+
# copy all the dll dependencies to the release folder
. "./.appveyor/UtilityFunctions.ps1"
$DLLSearchPath = "C:\msys64\mingw64\bin;$env:PATH"
$MingwDLLs = RecursivelyGetDeps $DLLSearchPath "$RELEASE_DIST\yuzu.exe"
$MingwDLLs += RecursivelyGetDeps $DLLSearchPath "$RELEASE_DIST\yuzu_cmd.exe"
+ $MingwDLLs += RecursivelyGetDeps $DLLSearchPath "$RELEASE_DIST\imageformats\qjpeg.dll"
Write-Host "Detected the following dependencies:"
Write-Host $MingwDLLs
foreach ($file in $MingwDLLs) {
Copy-Item -path "$file" -force -destination "$RELEASE_DIST"
}
- # 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"
-
- # copy the qt windows vista style dll to platforms
- Copy-Item -path "C:/msys64/mingw64/share/qt5/plugins/styles/qwindowsvistastyle.dll" -force -destination "$RELEASE_DIST/styles"
-
- # copy the qt jpeg imageformat dll to platforms
- Copy-Item -path "C:/msys64/mingw64/share/qt5/plugins/imageformats/qjpeg.dll" -force -destination "$RELEASE_DIST/imageformats"
-
7z a -tzip $MINGW_BUILD_ZIP $RELEASE_DIST\*
7z a $MINGW_SEVENZIP $RELEASE_DIST
}