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%
|
2025-01-29 15:23:13 +00:00
|
|
|
REM cl ..\bastd\examples\data_structs.c %debugflags%
|
2025-01-22 08:58:37 +00:00
|
|
|
REM cl ..\bastd\examples\string.c %debugflags%
|
|
|
|
REM cl ..\bastd\examples\buffer.c %debugflags%
|
2025-01-26 16:19:25 +00:00
|
|
|
REM cl ..\bastd\examples\job_random.c %debugflags%
|
2025-01-17 11:27:55 +00:00
|
|
|
|
|
|
|
REM This builds your application with debug symbols.
|
2025-02-18 09:36:53 +00:00
|
|
|
REM cl ..\main.c %debugflags%
|
2025-01-17 09:36:09 +00:00
|
|
|
|
|
|
|
popd
|