diff options
Diffstat (limited to '.github/workflows/cmake.yml')
-rw-r--r-- | .github/workflows/cmake.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 2cab76c1..db8681dd 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -25,11 +25,11 @@ jobs: os: [macos-latest, ubuntu-latest, windows-latest] include: - os: macos-latest - CMAKE: cmake + cmake: cmake - os: ubuntu-latest - CMAKE: cmake + cmake: cmake - os: windows-latest - CMAKE: ${{github.workspace}}\.github\workflows\build-windows.bat cmake + cmake: .\.github\workflows\build-windows.bat cmake steps: - uses: actions/checkout@v2 @@ -52,7 +52,7 @@ jobs: cached: ${{ steps.cache-qt.outputs.cache-hit }} - name: Configure - run: ${{matrix.cmake}} cmake -G "Ninja Multi-Config" -S ${{github.workspace}}/ -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DQt5_DIR=${{env.Qt5_DIR}} -DQt5Gui_DIR=${{env.Qt5_DIR}}/lib/cmake/Qt5Gui + run: ${{matrix.cmake}} -G "Ninja Multi-Config" -S ${{github.workspace}}/ -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DQt5_DIR=${{env.Qt5_DIR}} -DQt5Gui_DIR=${{env.Qt5_DIR}}/lib/cmake/Qt5Gui - name: Build run: ${{matrix.cmake}} --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} --target install |