diff options
-rw-r--r-- | bootstrap-msvc.bat | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bootstrap-msvc.bat b/bootstrap-msvc.bat index 1af91b0..a404b5b 100644 --- a/bootstrap-msvc.bat +++ b/bootstrap-msvc.bat @@ -132,9 +132,10 @@ set "obj=" for %%d in (%src%) do ( cd %%d + rem Filter out *.test.cxx sources. + rem set "r=" - for /F "tokens=*" %%i in ('dir /b *.cxx ^| findstr /v "\.test\.cxx"') do ( - set "r=!r! %%i") + for /F "tokens=*" %%i in ('dir /b *.cxx ^| findstr /v "\.test\.cxx"') do set "r=!r! %%i" call :compile !r! if errorlevel 1 goto error |