2025-01-17 09:36:09 +00:00
|
|
|
@echo off
|
|
|
|
|
|
|
|
if not exist build\ mkdir build
|
|
|
|
pushd build
|
|
|
|
|
2025-01-17 11:27:55 +00:00
|
|
|
REM Uncomment one of these to run an example. Try it! They're great documentation.
|
|
|
|
REM cl /Zi ..\bastd\examples\memory.c
|
2025-01-19 19:20:50 +00:00
|
|
|
REM cl /Zi ..\bastd\examples\fib_slice.c
|
2025-01-19 19:28:12 +00:00
|
|
|
REM cl /Zi ..\bastd\examples\string.c
|
2025-01-17 11:27:55 +00:00
|
|
|
|
|
|
|
REM This builds your application with debug symbols.
|
2025-01-19 19:20:50 +00:00
|
|
|
REM cl /Zi ..\main.c
|
2025-01-17 09:36:09 +00:00
|
|
|
|
|
|
|
popd
|