2025-01-17 09:36:09 +00:00
|
|
|
@echo off
|
|
|
|
|
|
|
|
if not exist build\ mkdir build
|
|
|
|
pushd build
|
|
|
|
|
2025-01-22 20:49:47 +00:00
|
|
|
set debugflags=/nologo /W3 /MTd /Od /Zi /RTC1 /fsanitize=address /link /incremental:no shell32.lib
|
2025-01-22 08:58:37 +00:00
|
|
|
|
2025-01-17 11:27:55 +00:00
|
|
|
REM Uncomment one of these to run an example. Try it! They're great documentation.
|
2025-01-22 08:58:37 +00:00
|
|
|
REM cl ..\bastd\examples\memory.c %debugflags%
|
|
|
|
REM cl ..\bastd\examples\fib_slice.c %debugflags%
|
|
|
|
REM cl ..\bastd\examples\string.c %debugflags%
|
|
|
|
REM cl ..\bastd\examples\buffer.c %debugflags%
|
2025-01-17 11:27:55 +00:00
|
|
|
|
|
|
|
REM This builds your application with debug symbols.
|
2025-01-22 20:49:47 +00:00
|
|
|
cl ..\main.c %debugflags%
|
2025-01-17 09:36:09 +00:00
|
|
|
|
|
|
|
popd
|