8 lines
139 B
Batchfile
8 lines
139 B
Batchfile
|
@echo off
|
||
|
|
||
|
set opts=-FC -GR- -EHa- -nologo -Zi
|
||
|
set code=%cd%
|
||
|
pushd ..\..\build
|
||
|
cl %opts% %code%\test_preproc_main.cpp -Fetest_preproc
|
||
|
popd
|