We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0bf9cf commit 7660416Copy full SHA for 7660416
.github/workflows/main.yml
@@ -13,7 +13,6 @@ jobs:
13
uses: ilammy/msvc-dev-cmd@v1.13.0
14
with:
15
arch: x86
16
- toolset: "14.44.35207"
17
18
- name: Get CMake
19
uses: lukka/get-cmake@v3.31.6
@@ -33,9 +32,11 @@ jobs:
33
32
34
- name: Configure and build
35
run: |
36
- if (!(Test-Path "bin")) { mkdir bin }
+ if (!(Test-Path "bin")) {
+ mkdir bin
37
+ cmake -Bbin -G "Ninja" -DCMAKE_BUILD_TYPE=Release -DCMAKE_EXPORT_COMPILE_COMMANDS:BOOL=TRUE .
38
+ }
39
cd bin
- cmake -G "Ninja" -DCMAKE_BUILD_TYPE=Release -DCMAKE_EXPORT_COMPILE_COMMANDS:BOOL=TRUE ../
40
cmake --build . --config Release --target TrilogyChaosMod.SA -j 8 --
41
# env:
42
# SCCACHE_GHA_ENABLED: "true"
0 commit comments