Skip to content

Commit cc5cbf1

Browse files
committed
Default to msbuild on Windows
And pass build type flag to the build phase. Ninja is not the default way to build on Windows.
1 parent 8a680e6 commit cc5cbf1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/vs2019/build-cbmc.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ echo "Remove strawberry"
1616
del /s /q "c:/Strawberry/c/bin"
1717

1818
echo "Configure CBMC with cmake"
19-
cmake --config Release -S. -Bbuild -GNinja
19+
cmake -S. -Bbuild
2020

2121
echo "Build CBMC with cmake"
22-
cmake --build build
22+
cmake --build build --config Release

0 commit comments

Comments
 (0)