Skip to content

Commit 623dbac

Browse files
committed
Add debug and release build tool.
1 parent 53e1026 commit 623dbac

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

tools/build_native_win_debug.bat

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
pushd %~dp0\..
2+
3+
call cmake -B build -G "Visual Studio 17 2022" . || goto :error
4+
call cmake --build build --config Debug || goto :error
5+
6+
popd
7+
exit /b 0
8+
9+
:error
10+
echo Build Failed with Error %errorlevel%.
11+
popd
12+
exit /b 1
File renamed without changes.

0 commit comments

Comments
 (0)