libragephoto: use C++17 for the CI/CD build

This commit is contained in:
Syping 2023-03-06 20:31:54 +01:00
parent 3c433ca072
commit 6d943e7b20
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ jobs:
sudo apt-get update -qq sudo apt-get update -qq
sudo apt-get install cmake gcc g++ ninja-build -qq sudo apt-get install cmake gcc g++ ninja-build -qq
- name: Configure CMake - name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -GNinja run: cmake -B ${{github.workspace}}/build -DCMAKE_CXX_STANDARD=17 -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -GNinja
- name: Build - name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
- name: Install - name: Install

View File

@ -21,7 +21,7 @@ jobs:
with: with:
arch: ${{matrix.arch}} arch: ${{matrix.arch}}
- name: Configure CMake - name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DRAGEPHOTO_UNICODE=wincvt -GNinja run: cmake -B ${{github.workspace}}/build -DCMAKE_CXX_STANDARD=17 -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DRAGEPHOTO_UNICODE=wincvt -GNinja
- name: Build - name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
- name: Install - name: Install