c-scripting/build_with_cl.bat

9 lines
200 B
Batchfile

@echo off
set code=%cd%
set opts=-FC -GR- -EHa- -nologo -Zi -std:c11 -wd5105
set inc=-I%code%\symbol_set
pushd build
cl -Feexample1 %code%\examples\example1.c %opts% %inc% -link -INCREMENTAL:NO
popd