Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Suyu
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
many-archive
Suyu
Commits
8af62c99
There was an error fetching the commit references. Please try again later.
Commit
8af62c99
authored
5 years ago
by
gxcreator
Browse files
Options
Downloads
Patches
Plain Diff
Fixed packaging on some systems with different QT5 path
parent
ff0c49e1
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.ci/scripts/windows/docker.sh
+7
-1
7 additions, 1 deletion
.ci/scripts/windows/docker.sh
with
7 additions
and
1 deletion
.ci/scripts/windows/docker.sh
100644 → 100755
+
7
−
1
View file @
8af62c99
...
@@ -29,7 +29,13 @@ echo 'Prepare binaries...'
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment