Browse Source
Merge pull request #3775 from gxcreator/qt5-path-fix
Fixed packaging on some systems with different QT5 path
pull/15/merge
bunnei
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
7 additions and
1 deletions
-
.ci/scripts/windows/docker.sh
|
|
@ -29,7 +29,13 @@ echo 'Prepare binaries...' |
|
|
cd .. |
|
|
cd .. |
|
|
mkdir package |
|
|
mkdir package |
|
|
|
|
|
|
|
|
QT_PLATFORM_DLL_PATH='/usr/x86_64-w64-mingw32/lib/qt5/plugins/platforms/' |
|
|
|
|
|
|
|
|
if [ -d "/usr/x86_64-w64-mingw32/lib/qt5/plugins/platforms/" ]; then |
|
|
|
|
|
QT_PLATFORM_DLL_PATH='/usr/x86_64-w64-mingw32/lib/qt5/plugins/platforms/' |
|
|
|
|
|
else |
|
|
|
|
|
#fallback to qt |
|
|
|
|
|
QT_PLATFORM_DLL_PATH='/usr/x86_64-w64-mingw32/lib/qt/plugins/platforms/' |
|
|
|
|
|
fi |
|
|
|
|
|
|
|
|
find build/ -name "yuzu*.exe" -exec cp {} 'package' \; |
|
|
find build/ -name "yuzu*.exe" -exec cp {} 'package' \; |
|
|
|
|
|
|
|
|
# copy Qt plugins |
|
|
# copy Qt plugins |
|
|
|