You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build.bat 645B

12345678910111213141516171819202122232425262728
  1. @echo off
  2. echo Fop Build System
  3. echo ----------------
  4. if "%JAVA_HOME%" == "" goto error
  5. set LOCALCLASSPATH=%JAVA_HOME%\lib\tools.jar;%JAVA_HOME%\lib\classes.zip;lib\ant.jar;lib\xml.jar;lib
  6. set ANT_HOME=.\lib
  7. echo Building with classpath %LOCALCLASSPATH%
  8. echo Starting Ant...
  9. %JAVA_HOME%\bin\java.exe -Dant.home=%ANT_HOME% -classpath %LOCALCLASSPATH%;%CLASSPATH% org.apache.tools.ant.Main %1 %2 %3 %4 %5
  10. goto end
  11. :error
  12. echo ERROR: JAVA_HOME not found in your environment.
  13. echo Please, set the JAVA_HOME variable in your environment to match the
  14. echo location of the Java Virtual Machine you want to use.
  15. :end
  16. rem set LOCALCLASSPATH=