summaryrefslogtreecommitdiff
path: root/make.bat
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2021-03-02 13:06:48 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2021-03-02 13:06:48 -0500
commit3600ff8d24ea87a0b63e4931010e0dd52232246c (patch)
tree80593ff98b88280fd131fc5ba8e3b43c1ee998f7 /make.bat
parent64321c2a6f08cad8ebafafe1b09a913d16a1b0e2 (diff)
silence windows release build warning
also remove swap busy loop again because that's still happening
Diffstat (limited to 'make.bat')
-rw-r--r--make.bat6
1 files changed, 3 insertions, 3 deletions
diff --git a/make.bat b/make.bat
index 0a11e02..651ad52 100644
--- a/make.bat
+++ b/make.bat
@@ -15,6 +15,6 @@ rc /nologo ted.rc
if _%1 == _ (
cl main.c stb_truetype.c ted.res /DDEBUG /DEBUG /Zi %C_FLAGS% /Fe:ted
)
-if _%1 == _release cl main.c ted.res /O2 %C_FLAGS% /Fe:ted
-if _%1 == _release_with_debug_info cl main.c ted.res /DEBUG /Zi /O2 %C_FLAGS% /Fe:ted
-if _%1 == _profile cl main.c ted.res /O2 /DPROFILE %C_FLAGS% /Fe:ted
+if _%1 == _release cl main.c ted.res /O2 /wd4702 %C_FLAGS% /Fe:ted
+if _%1 == _release_with_debug_info cl main.c ted.res /DEBUG /Zi /O2 /wd4702 %C_FLAGS% /Fe:ted
+if _%1 == _profile cl main.c ted.res /O2 /wd4702 /DPROFILE %C_FLAGS% /Fe:ted