diff options
| author | Stanislaw Halik <sthalik@misaki.pl> | 2022-01-03 00:37:27 +0000 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-03 00:37:27 +0000 | 
| commit | cb3096c57d1c7460606a796edd0d25c1de71f9af (patch) | |
| tree | bb20f4837a5260b7c5055e9386ad8d21365be183 /.github | |
| parent | d725f896c12c57048a9e68976ab27278bfe6a61d (diff) | |
Update cmake.yml
Diffstat (limited to '.github')
| -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  | 
