aboutsummaryrefslogtreecommitdiff
path: root/build.bat
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2018-02-25 12:29:48 +0000
committergingerBill <bill@gingerbill.org>2018-02-25 12:29:48 +0000
commit1cd453db14c80988a7cd29bbc9ea1f70e45ad513 (patch)
tree0973ed0df422a1ef8c6b4018a70a1b8e59385f9e /build.bat
parent3b5932699cce49504fc555d32f944de48d30dd35 (diff)
Remove unneeded disabled warnings for MSVC
Diffstat (limited to 'build.bat')
-rw-r--r--build.bat6
1 files changed, 2 insertions, 4 deletions
diff --git a/build.bat b/build.bat
index 1a51f153b..fe99fb48d 100644
--- a/build.bat
+++ b/build.bat
@@ -18,9 +18,8 @@ set compiler_warnings= ^
-W4 -WX ^
-wd4100 -wd4101 -wd4127 -wd4189 ^
-wd4201 -wd4204 -wd4244 ^
- -wd4306 ^
- -wd4456 -wd4457 -wd4480 ^
- -wd4505 -wd4512 -wd4550
+ -wd4456 -wd4457 ^
+ -wd4512
set compiler_includes=
set libs= ^
@@ -45,7 +44,6 @@ del *.ilk > NUL 2> NUL
cl %compiler_settings% "src\main.cpp" ^
/link %linker_settings% -OUT:%exe_name% ^
&& odin run examples/demo.odin
- rem && odin docs core/fmt.odin
del *.obj > NUL 2> NUL