File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -25,23 +25,20 @@ phases:
25
25
if (-not $?) {
26
26
exit 1
27
27
}
28
- mkdir build
29
- cd build
30
-
31
- cmake .. -G Ninja -DCMAKE_C_COMPILER=clcache.exe -DCMAKE_CXX_COMPILER=clcache.exe -DCMAKE_BUILD_TYPE=Release
28
+ cmake -S . -Bbuild -G Ninja "-DCMAKE_C_COMPILER=clcache.exe" "-DCMAKE_CXX_COMPILER=clcache.exe" "-DCMAKE_BUILD_TYPE=Release"
32
29
if (-not $?) {
33
30
exit 1
34
31
}
35
32
Get-Content build.ninja
36
- cmake --build . --config Release --target cbmc
33
+ cmake --build build --config Release --target cbmc
37
34
if (-not $?) {
38
35
exit 1
39
36
}
40
- cmake --build . --config Release --target jbmc
37
+ cmake --build build --config Release --target jbmc
41
38
if (-not $?) {
42
39
exit 1
43
40
}
44
- cmake --build . --config Release --target unit
41
+ cmake --build build --config Release --target unit
45
42
if (-not $?) {
46
43
exit 1
47
44
}
You can’t perform that action at this time.
0 commit comments