Skip to content

Commit

Permalink
actions: fix cmake install root path
Browse files Browse the repository at this point in the history
  • Loading branch information
mcallegari committed Nov 23, 2024
1 parent 46d7895 commit b2c90ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ jobs:
sed -i -e 's/Debug/Release/g' CMakeLists.txt
mkdir build
cd build
cmake -DCMAKE_PREFIX_PATH="$QTDIR/lib/cmake/" -Dappimage=ON -DINSTALL_ROOT=$TARGET_DIR ..
cmake -DCMAKE_PREFIX_PATH="$QTDIR/lib/cmake/" -Dappimage=ON -DINSTALL_ROOT=${INSTALL_ROOT} ..
- name: Configure for QT5QML build
if: ${{ matrix.task == 'compile-qt5qml' }}
Expand All @@ -163,7 +163,7 @@ jobs:
sed -i -e 's/Debug/Release/g' CMakeLists.txt
mkdir build
cd build
cmake -DCMAKE_PREFIX_PATH="$QTDIR/lib/cmake/" -Dqmlui=ON -Dappimage=ON -DINSTALL_ROOT=$TARGET_DIR ..
cmake -DCMAKE_PREFIX_PATH="$QTDIR/lib/cmake/" -Dqmlui=ON -Dappimage=ON -DINSTALL_ROOT=${INSTALL_ROOT} ..
- name: Configure for QT5 coverage build
if: ${{ matrix.task == 'coverage-qt5' }}
Expand Down

0 comments on commit b2c90ee

Please sign in to comment.