diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2019-03-11 15:30:03 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2019-03-11 15:30:03 +0200 |
commit | 837a110d52aa22e6f5f3c13048dd48b9026e6664 (patch) | |
tree | 0dcc1f063cd3df5390c6aa1f3514b5abc8dfd7ed /bootstrap-msvc.bat | |
parent | 4a07276eeeb131587bf53ced693509eb24f7678f (diff) |
Add note to bootstrap-msvc.bat
Diffstat (limited to 'bootstrap-msvc.bat')
-rw-r--r-- | bootstrap-msvc.bat | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bootstrap-msvc.bat b/bootstrap-msvc.bat index a404b5b..d9b4f5a 100644 --- a/bootstrap-msvc.bat +++ b/bootstrap-msvc.bat @@ -134,6 +134,9 @@ for %%d in (%src%) do ( rem Filter out *.test.cxx sources. rem + rem Note that we don't need to worry about *.obj since we clean them all up + rem before compiling so after compiling we will only have the ones we need. + rem set "r=" for /F "tokens=*" %%i in ('dir /b *.cxx ^| findstr /v "\.test\.cxx"') do set "r=!r! %%i" |