Skip to content

Commit

Permalink
github: fix qt dll directory path
Browse files Browse the repository at this point in the history
  • Loading branch information
Adspartan committed Dec 10, 2024
1 parent 0936406 commit aa618f6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ jobs:

- run: |
mkdir dependencies/
cp -av "${{ env.Qt5_Dir }}/bin/Qt5Core.dll" dependencies/
cp -av "${{ env.Qt5_Dir }}/bin/Qt5Gui.dll" dependencies/
cp -av "${{ env.Qt5_Dir }}/bin/Qt5OpenGL.dll" dependencies/
cp -av "${{ env.Qt5_Dir }}/bin/Qt5Widgets.dll" dependencies/
cp -av "${{ env.QT_ROOT_DIR }}/bin/Qt5Core.dll" dependencies/
cp -av "${{ env.QT_ROOT_DIR }}/bin/Qt5Gui.dll" dependencies/
cp -av "${{ env.QT_ROOT_DIR }}/bin/Qt5OpenGL.dll" dependencies/
cp -av "${{ env.QT_ROOT_DIR }}/bin/Qt5Widgets.dll" dependencies/
if: ${{ matrix.platform == 'windows-2019' }}
shell: bash
- run: |
Expand Down

0 comments on commit aa618f6

Please sign in to comment.