aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2019-03-08 19:31:22 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2019-03-08 19:31:22 +0200
commit82f41dbb9d42454d46921f6fcc87f040fe532ef7 (patch)
treef7c1b99b333fd0e61420fc183c296148fb93d19a
parent2d8d61041357ef9718ba93ce9044ea7dbc88cb4f (diff)
Cosmetic changes
-rw-r--r--bootstrap-msvc.bat5
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