Skip to content

Commit

Permalink
Change exports as suggested by GitHub action runner
Browse files Browse the repository at this point in the history
  • Loading branch information
hsonne committed Sep 4, 2023
1 parent 5a6a8fa commit e9ca85b
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/qt_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,12 @@ jobs:
# - name: Install Qt
# uses: jurplel/install-qt-action@v3
- name: Install Qt
run: |
brew install qt@5
ls -l /opt/homebrew/opt/qt@5/bin
run: brew install qt@5
- name: Export variables
run: echo 'export PATH="/opt/homebrew/opt/qt@5/bin:$PATH"' >> ~/.zshrc
run: |
echo 'export PATH="/usr/local/opt/qt@5/bin:$PATH"' >> /Users/runner/.bash_profile
export LDFLAGS="-L/usr/local/opt/qt@5/lib"
export CPPFLAGS="-I/usr/local/opt/qt@5/include"
- name: Run QMake
run: qmake src/app/app.pro
- name: Build
Expand Down

0 comments on commit e9ca85b

Please sign in to comment.