aboutsummaryrefslogtreecommitdiff
path: root/build.bat
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-09-14 21:44:41 +0100
committergingerBill <bill@gingerbill.org>2021-09-14 21:44:41 +0100
commit43ebee4e9138c811be277fe214b2298459972e9a (patch)
tree3fd3bd8e439481e631b93405e6bce392a63bed74 /build.bat
parentcb2437959c76bdd67aa0ee4b4836384da606c11f (diff)
Revert build.bat
Diffstat (limited to 'build.bat')
-rw-r--r--build.bat12
1 files changed, 5 insertions, 7 deletions
diff --git a/build.bat b/build.bat
index a00c6cc45..61c9afccc 100644
--- a/build.bat
+++ b/build.bat
@@ -68,15 +68,13 @@ set linker_settings=%libs% %linker_flags%
del *.pdb > NUL 2> NUL
del *.ilk > NUL 2> NUL
-rem cl %compiler_settings% "src\main.cpp" "src\libtommath.cpp" /link %linker_settings% -OUT:%exe_name%
-rem if %errorlevel% neq 0 goto end_of_build
+cl %compiler_settings% "src\main.cpp" "src\libtommath.cpp" /link %linker_settings% -OUT:%exe_name%
+if %errorlevel% neq 0 goto end_of_build
-rem call build_vendor.bat
-rem if %errorlevel% neq 0 goto end_of_build
+call build_vendor.bat
+if %errorlevel% neq 0 goto end_of_build
-rem if %release_mode% EQU 0 odin run examples/demo
-
-odin check vendor/stb/image -no-entry-point -vet -strict-style
+if %release_mode% EQU 0 odin run examples/demo
del *.obj > NUL 2> NUL