summaryrefslogtreecommitdiff
path: root/make.bat
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2023-01-08 12:05:34 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2023-01-08 12:05:34 -0500
commitbb6d6850bd7d1e7fb65bae6f4d1bae32534f3455 (patch)
tree74b40c5ec7877043802ebc8b325df8552f002e8e /make.bat
parent34212b559d7bb0eb0d4e7797ba3e9b1a718cedac (diff)
start windows support
Diffstat (limited to 'make.bat')
-rw-r--r--make.bat9
1 files changed, 8 insertions, 1 deletions
diff --git a/make.bat b/make.bat
index 2490917..b53da09 100644
--- a/make.bat
+++ b/make.bat
@@ -13,7 +13,14 @@ if not exist pcre2-32-static.lib (
SET C_FLAGS=/nologo /W4 /MD /wd4200 /wd4204 /wd4221 /wd4706 /wd4214 /D_CRT_SECURE_NO_WARNINGS /I SDL2/include /I pcre2 SDL2/lib/x64/SDL2main.lib SDL2/lib/x64/SDL2.lib pcre2-32-static.lib
rc /nologo ted.rc
if _%1 == _ (
- cl main.c stb_image.c stb_truetype.c ted.res /DDEBUG /DEBUG /Zi %C_FLAGS% /Fe:ted
+ cl buffer.c build.c colors.c command.c^
+ config.c find.c gl.c ide-autocomplete.c^
+ ide-definitions.c ide-highlights.c ide-hover.c^
+ ide-signature-help.c ide-usages.c lsp.c lsp-json.c^
+ lsp-parse.c lsp-write.c main.c menu.c node.c^
+ os-win.c session.c stb_image.c stb_truetype.c^
+ syntax.c tags.c ted.c text.c ui.c util.c ted.res^
+ /DDEBUG /DEBUG /Zi %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