diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2021-03-02 13:06:48 -0500 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2021-03-02 13:06:48 -0500 |
commit | 3600ff8d24ea87a0b63e4931010e0dd52232246c (patch) | |
tree | 80593ff98b88280fd131fc5ba8e3b43c1ee998f7 /make.bat | |
parent | 64321c2a6f08cad8ebafafe1b09a913d16a1b0e2 (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.bat | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |