c-scripting/build_with_clang.bat

9 lines
165 B
Batchfile

@echo off
set code=%cd%
set opts=-g
set inc=-I%code%\symbol_set
pushd build
clang -o example1 %code%\examples\example1.c %opts% %inc% -Xlinker -INCREMENTAL:NO
popd