8 lines
85 B
Batchfile
8 lines
85 B
Batchfile
|
@echo off
|
||
|
|
||
|
if not exist build\ mkdir build
|
||
|
pushd build
|
||
|
|
||
|
cl /Zi ..\main.c
|
||
|
|
||
|
popd
|