Show the building startup time in Title now.

svn path=/trunk/tools/RosBE-Windows/; revision=339
This commit is contained in:
Daniel Reimer 2007-07-29 15:33:09 +00:00
parent e32f0d0e66
commit 0d4ec23f5a

View File

@ -77,17 +77,21 @@ call "%ROSBEBASEDIR%\TimeDate.cmd"
::
if %ROSBE_SHOWTIME% == 1 (
if %ROSBE_WRITELOG% == 1 (
title Started: %TIMERAW%, Building...
call buildtime "%MAKE_COMMAND%" 2>&1 | tee "%_ROSBELOGDIR%\BuildLog-%_MINGWVERSION%-%DATENAME%-%TIMENAME%.txt"
)
if %ROSBE_WRITELOG% == 0 (
title Started: %TIMERAW%, Building...
call buildtime "%MAKE_COMMAND%" 2>&1
)
)
if %ROSBE_SHOWTIME% == 0 (
if %ROSBE_WRITELOG% == 1 (
title Started: %TIMERAW%, Building...
call "%MAKE_COMMAND%" 2>&1 | tee "%_ROSBELOGDIR%\BuildLog-%_MINGWVERSION%-%DATENAME%-%TIMENAME%.txt"
)
if %ROSBE_WRITELOG% == 0 (
title Started: %TIMERAW%, Building...
call "%MAKE_COMMAND%" 2>&1
)
)