fixing build scripts for new locations

This commit is contained in:
benfry
2011-01-26 21:53:07 +00:00
parent 8f3a0022a1
commit b9d14b44d5
7 changed files with 47 additions and 33 deletions
+5 -3
View File
@@ -7,17 +7,19 @@
</target>
<target name="compile" description="Compile sources">
<echo message="${runtime.jars}" />
<condition property="core-built">
<available file="../core/core.jar" />
<available file="../../../core/core.jar" />
</condition>
<fail unless="core-built" message="Please build the core library first and make sure it sits in ../core/core.jar" />
<fail unless="core-built" message="Please build the core library first and make sure it sits in ../../../core/core.jar" />
<mkdir dir="bin" />
<javac target="1.5"
srcdir="src" destdir="bin"
encoding="UTF-8"
includeAntRuntime="false"
classpath="../core/core.jar" />
classpath="../../../core/core.jar" />
</target>
<target name="build" depends="compile" description="Build DXF library">
+3 -3
View File
@@ -8,16 +8,16 @@
<target name="compile" description="Compile sources">
<condition property="core-built">
<available file="../core/core.jar" />
<available file="../../../core/core.jar" />
</condition>
<fail unless="core-built" message="Please build the core library first and make sure it sits in ../core/core.jar" />
<fail unless="core-built" message="Please build the core library first and make sure it sits in ../../../core/core.jar" />
<mkdir dir="bin" />
<javac target="1.5"
srcdir="src" destdir="bin"
encoding="UTF-8"
includeAntRuntime="false"
classpath="../core/core.jar" />
classpath="../../../core/core.jar" />
</target>
<target name="build" depends="compile" description="Build net library">
+3 -3
View File
@@ -8,16 +8,16 @@
<target name="compile" description="Compile sources">
<condition property="core-built">
<available file="../core/core.jar" />
<available file="../../../core/core.jar" />
</condition>
<fail unless="core-built" message="Please build the core library first and make sure it sits in ../core/core.jar" />
<fail unless="core-built" message="Please build the core library first and make sure it sits in ../../../core/core.jar" />
<mkdir dir="bin" />
<javac target="1.5"
srcdir="src" destdir="bin"
encoding="UTF-8"
includeAntRuntime="false"
classpath="../core/core.jar; library/jogl.jar" />
classpath="../../../core/core.jar; library/jogl.jar" />
</target>
<target name="build" depends="compile" description="Build OpenGL library">
+3 -3
View File
@@ -8,16 +8,16 @@
<target name="compile" description="Compile sources">
<condition property="core-built">
<available file="../core/core.jar" />
<available file="../../../core/core.jar" />
</condition>
<fail unless="core-built" message="Please build the core library first and make sure it sits in ../core/core.jar" />
<fail unless="core-built" message="Please build the core library first and make sure it sits in ../../../core/core.jar" />
<mkdir dir="bin" />
<javac target="1.5"
srcdir="src" destdir="bin"
encoding="UTF-8"
includeAntRuntime="false"
classpath="../core/core.jar; library/itext.jar" />
classpath="../../../core/core.jar; library/itext.jar" />
</target>
<target name="build" depends="compile" description="Build PDF library">
+3 -3
View File
@@ -8,16 +8,16 @@
<target name="compile" description="Compile sources">
<condition property="core-built">
<available file="../core/core.jar" />
<available file="../../../core/core.jar" />
</condition>
<fail unless="core-built" message="Please build the core library first and make sure it sits in ../core/core.jar" />
<fail unless="core-built" message="Please build the core library first and make sure it sits in ../../../core/core.jar" />
<mkdir dir="bin" />
<javac target="1.5"
srcdir="src" destdir="bin"
encoding="UTF-8"
includeAntRuntime="false"
classpath="../core/core.jar; library/RXTXcomm.jar" />
classpath="../../../core/core.jar; library/RXTXcomm.jar" />
</target>
<target name="build" depends="compile" description="Build serial library">
+3 -3
View File
@@ -8,16 +8,16 @@
<target name="compile" description="Compile sources">
<condition property="core-built">
<available file="../core/core.jar" />
<available file="../../../core/core.jar" />
</condition>
<fail unless="core-built" message="Please build the core library first and make sure it sits in ../core/core.jar" />
<fail unless="core-built" message="Please build the core library first and make sure it sits in ../../../core/core.jar" />
<mkdir dir="bin" />
<javac target="1.5"
srcdir="src" destdir="bin"
encoding="UTF-8"
includeAntRuntime="false"
classpath="../core/core.jar; QTJava.zip" />
classpath="../../../core/core.jar; QTJava.zip" />
</target>
<target name="build" depends="compile" description="Build video library">