0
Fork 0
data-structures-lesson1/build.bat

11 lines
128 B
Batchfile

@echo off
set src=%cd%
set opts=-nologo -Zi -Fetest
if not exist "build" mkdir build
pushd build
cl %opts% %src%\test.c
popd