You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
200 B
Batchfile
9 lines
200 B
Batchfile
1 year ago
|
@echo off
|
||
|
|
||
|
cl /nologo /diagnostics:caret /DDEVTOOLS /Igen /Ithirdparty /Wall /FC /Zi /WX playground.c /link /noimplib /noexp || goto :error
|
||
|
|
||
|
goto :EOF
|
||
|
|
||
|
:error
|
||
|
echo Failed to build
|
||
|
exit /B %ERRORLEVEL%
|