aboutsummaryrefslogtreecommitdiffstats
path: root/build.bat
diff options
context:
space:
mode:
authorfotis <fotis@unknown>2000-03-06 21:34:41 +0000
committerfotis <fotis@unknown>2000-03-06 21:34:41 +0000
commit99aca1e1efffb3e2824ba70454a51f6a9fb83336 (patch)
tree7aba2f27b5cea736758d27bdf64854c9b5ff7c60 /build.bat
parent9013a8081ee2bf6baeaac5908a9ecd066768f289 (diff)
downloadxmlgraphics-fop-99aca1e1efffb3e2824ba70454a51f6a9fb83336.tar.gz
xmlgraphics-fop-99aca1e1efffb3e2824ba70454a51f6a9fb83336.zip
Switching from make to Ant
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193284 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.bat')
-rwxr-xr-xbuild.bat28
1 files changed, 28 insertions, 0 deletions
diff --git a/build.bat b/build.bat
new file mode 100755
index 000000000..9451c94b2
--- /dev/null
+++ b/build.bat
@@ -0,0 +1,28 @@
+echo on
+
+echo Fop Build System
+echo ----------------
+
+if "%JAVA_HOME%" == "" goto error
+
+set LOCALCLASSPATH=%JAVA_HOME%\lib\tools.jar;%JAVA_HOME%\lib\classes.zip;lib\ant.jar;lib\xml.jar;lib
+set ANT_HOME=.\lib
+
+echo Building with classpath %LOCALCLASSPATH%
+
+echo Starting Ant...
+
+%JAVA_HOME%\bin\java.exe -Dant.home=%ANT_HOME% -classpath %LOCALCLASSPATH% org.apache.tools.ant.Main %1 %2 %3 %4 %5
+
+goto end
+
+:error
+
+echo ERROR: JAVA_HOME not found in your environment.
+echo Please, set the JAVA_HOME variable in your environment to match the
+echo location of the Java Virtual Machine you want to use.
+
+:end
+
+rem set LOCALCLASSPATH=
+