Skip to content

Commit

Permalink
Add qt platform plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
hatstand committed Nov 14, 2019
1 parent 367b182 commit add836a
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .circleci/config.yml
Expand Up @@ -588,13 +588,21 @@ jobs:
$CIRCLE_WORKING_DIRECTORY/dist/windows
- run: mkdir dist/windows/imageformats
- run:
name: Copy Qt plugin DLLs
name: Copy Qt imageformat plugin DLLs
working_directory: /target/plugins
command: >
cp
imageformats/qgif.dll
imageformats/qjpeg.dll
$CIRCLE_WORKING_DIRECTORY/dist/windows/imageformats
- run: mkdir dist/windows/platforms
- run:
name: Copy Qt platforms plugin DLLs
working_directory: /target/plugins
command: >
cp
platforms/qwindows.dll
$CIRCLE_WORKING_DIRECTORY/dist/windows/platforms
- run: mkdir dist/windows/gio-modules
- run:
name: Copy GIO modules
Expand Down
6 changes: 6 additions & 0 deletions dist/windows/clementine.nsi.in
Expand Up @@ -407,6 +407,12 @@ Section "Qt image format plugins" imageformats
File "/oname=qjpeg.dll" "imageformats\qjpeg.dll"
SectionEnd

Section "Qt platform plugins" platforms
SetOutPath "$INSTDIR\platforms"

File "/oname=qwindows.dll" "platforms\qwindows.dll"
SectionEnd

Section "GIO modules" gio-modules
SetOutPath "$INSTDIR\gio-modules"

Expand Down

0 comments on commit add836a

Please sign in to comment.