We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f4a9a0 commit f80c744Copy full SHA for f80c744
.github/workflows/build_release.yml
@@ -32,13 +32,11 @@ jobs:
32
run: mkdir -p out
33
34
- name: cmake
35
- run: cmake .. -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=out/install
36
- working-directory: out
+ run: cmake -S . -B out -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=out/install
37
if: matrix.os != 'windows-latest'
38
39
- name: cmake (windows)
40
- run: cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=out/install
41
+ run: cmake -S . -B out -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=out/install
42
if: matrix.os == 'windows-latest'
43
44
- name: build
0 commit comments