Add command file for building documentation

This commit is contained in:
Marijn van der Zee
2011-10-13 16:13:22 +02:00
parent 65fdb7b7c3
commit 2c501d8cf1

20
doc/reference/Build.cmd Normal file
View File

@@ -0,0 +1,20 @@
@echo off
@echo .
@echo ..
@echo ...
@echo Running reference documentation Build Script, capturing output to buildlog.txt ...
@echo Start Time: %time%
..\..\build-support\tools\nant\bin\nant %1 %2 %3 %4 %5 %6 %7 %8 %9 > buildlog.txt
@echo .
@echo ..
@echo ...
@echo Launching text file viewer to display buildlog.txt contents...
start "ignored but required placeholder window title argument" buildlog.txt
@echo .
@echo ..
@echo ...
@echo ************************
@echo Build Complete!
@echo ************************
@echo End Time: %time%
@echo