summaryrefslogtreecommitdiff
path: root/make.bat
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2021-03-01 22:22:39 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2021-03-01 22:22:39 -0500
commitd94f61b5d52d3372c006aad67ccd133926666f18 (patch)
tree2b2df83684a183d56bdc50a095d98d91d0941979 /make.bat
parent12bb6e2cd377d3dfa2f7ec037c31463c3f9070d1 (diff)
crash handler for windows
Diffstat (limited to 'make.bat')
-rw-r--r--make.bat4
1 files changed, 2 insertions, 2 deletions
diff --git a/make.bat b/make.bat
index 80c7990..0a11e02 100644
--- a/make.bat
+++ b/make.bat
@@ -10,10 +10,10 @@ if not exist pcre2-32.lib (
popd
copy pcre2-10.36\Release\pcre2-32.lib
)
-SET C_FLAGS=/nologo /W4 /MD /wd4200 /wd4204 /wd4221 /wd4706 /wd4214 /D_CRT_SECURE_NO_WARNINGS /I pcre2-10.36 /I SDL2/include SDL2/lib/x64/SDL2main.lib SDL2/lib/x64/SDL2.lib opengl32.lib shell32.lib ole32.lib pcre2-32.lib
+SET C_FLAGS=/nologo /W4 /MD /wd4200 /wd4204 /wd4221 /wd4706 /wd4214 /D_CRT_SECURE_NO_WARNINGS /I pcre2-10.36 /I SDL2/include SDL2/lib/x64/SDL2main.lib SDL2/lib/x64/SDL2.lib pcre2-32.lib
rc /nologo ted.rc
if _%1 == _ (
- cl main.c ted.res /DDEBUG /DEBUG /Zi %C_FLAGS% /Fe:ted
+ 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