File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -104,17 +104,17 @@ jobs:
104104 CC : gcc-${{ matrix.gcc }}
105105 CXX : g++-${{ matrix.gcc }}
106106 run : |
107- cmake -S "${{ github.workspace }}" -B "${{ env.CMAKE_BUILD_DIR }}" -GNinja -DCMAKE_BUILD_TYPE=RelWithDebInfo
107+ cmake -S "${{ github.workspace }}" -B "${{ env.CMAKE_BUILD_DIR }}" -GNinja -DCMAKE_BUILD_TYPE=RelWithDebInfo -DVCPKG_BUILD_TYPE=release
108108 if : matrix.os == 'ubuntu-latest'
109109
110110 - name : Install dependencies and generate project files (mac)
111111 run : |
112- cmake -S "${{ github.workspace }}" -B "${{ env.CMAKE_BUILD_DIR }}" -GNinja -DCMAKE_BUILD_TYPE=RelWithDebInfo
112+ cmake -S "${{ github.workspace }}" -B "${{ env.CMAKE_BUILD_DIR }}" -GNinja -DCMAKE_BUILD_TYPE=RelWithDebInfo -DVCPKG_BUILD_TYPE=release
113113 if : matrix.os == 'macos-latest'
114114
115115 - name : Install dependencies and generate project files (windows)
116116 run : |
117- cmake -S "${{ github.workspace }}" -B "${{ env.CMAKE_BUILD_DIR }}" -GNinja -DCMAKE_BUILD_TYPE=RelWithDebInfo
117+ cmake -S "${{ github.workspace }}" -B "${{ env.CMAKE_BUILD_DIR }}" -GNinja -DCMAKE_BUILD_TYPE=RelWithDebInfo -DVCPKG_BUILD_TYPE=release
118118 if : matrix.os == 'windows-latest'
119119
120120 # Build the whole project with Ninja (which is spawn by CMake).
Original file line number Diff line number Diff line change @@ -104,18 +104,18 @@ jobs:
104104 CC : gcc-${{ matrix.gcc }}
105105 CXX : g++-${{ matrix.gcc }}
106106 run : |
107- cmake -S "${{ github.workspace }}" -B "${{ env.CMAKE_BUILD_DIR }}" -GNinja -DCMAKE_BUILD_TYPE=RelWithDebInfo
107+ cmake -S "${{ github.workspace }}" -B "${{ env.CMAKE_BUILD_DIR }}" -GNinja -DCMAKE_BUILD_TYPE=RelWithDebInfo -DVCPKG_BUILD_TYPE=release
108108 if : matrix.os == 'ubuntu-latest'
109109 - name : Install dependencies and generate project files (mac)
110110 env :
111111 CC : gcc-${{ matrix.gcc }}
112112 CXX : g++-${{ matrix.gcc }}
113113 run : |
114- cmake -S "${{ github.workspace }}" -B "${{ env.CMAKE_BUILD_DIR }}" -GNinja -DCMAKE_BUILD_TYPE=RelWithDebInfo
114+ cmake -S "${{ github.workspace }}" -B "${{ env.CMAKE_BUILD_DIR }}" -GNinja -DCMAKE_BUILD_TYPE=RelWithDebInfo -DVCPKG_BUILD_TYPE=release
115115 if : matrix.os == 'macos-latest'
116116 - name : Install dependencies and generate project files (windows)
117117 run : |
118- cmake -S "${{ github.workspace }}" -B "${{ env.CMAKE_BUILD_DIR }}" -GNinja -DCMAKE_BUILD_TYPE=RelWithDebInfo
118+ cmake -S "${{ github.workspace }}" -B "${{ env.CMAKE_BUILD_DIR }}" -GNinja -DCMAKE_BUILD_TYPE=RelWithDebInfo -DVCPKG_BUILD_TYPE=release
119119 if : matrix.os == 'windows-latest'
120120 # Build the whole project with Ninja (which is spawn by CMake).
121121 - name : Build
You can’t perform that action at this time.
0 commit comments