[Nice-commit] Nice/bin nicedoc.bat,NONE,1.1
Brought to you by:
bonniot
From: <bo...@us...> - 2004-02-16 14:02:14
|
Update of /cvsroot/nice/Nice/bin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8900/bin Added Files: nicedoc.bat Log Message: Added script to start nicedoc on windows (arjan). --- NEW FILE: nicedoc.bat --- @echo off rem --------------------------------------------------------------------------- rem nicedoc.bat - script to start the Nice documentation generator rem rem Environment Variariable Prerequisites: rem rem NICE - the root directory where nice is installed rem --------------------------------------------------------------------------- call niceclasspath for %%x in (%NICEPATH%) do goto gotNice goto end :gotNice java -classpath %NICEPATH%\nice.jar;%CLASSPATH% nice.tools.doc.fun %1 %2 %3 %4 %5 %6 %7 %8 %9 :end rem -- clean up a bit set NICEPATH= |