summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bootstrap-msvc.bat5
1 files changed, 3 insertions, 2 deletions
diff --git a/bootstrap-msvc.bat b/bootstrap-msvc.bat
index 1af91b08..a404b5b4 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