making further progress on build process

This commit is contained in:
benfry
2012-07-20 23:21:24 +00:00
parent 6a216e6f0b
commit 7a7b856385
13 changed files with 77 additions and 78 deletions

View File

@@ -8,16 +8,16 @@
<target name="compile" description="Compile sources">
<condition property="core-built">
<available file="../../../core/core.jar" />
<available file="../../../core/library/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/library/core.jar" />
<mkdir dir="bin" />
<javac target="1.5"
srcdir="src" destdir="bin"
encoding="UTF-8"
includeAntRuntime="false"
classpath="../../../core/core.jar" />
classpath="../../../core/library/core.jar" />
</target>
<target name="build" depends="compile" description="Build DXF library">

View File

@@ -8,16 +8,16 @@
<target name="compile" description="Compile sources">
<condition property="core-built">
<available file="../../../core/core.jar" />
<available file="../../../core/library/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/library/core.jar" />
<mkdir dir="bin" />
<javac target="1.5"
srcdir="src" destdir="bin"
encoding="UTF-8"
includeAntRuntime="false"
classpath="../../../core/core.jar" />
classpath="../../../core/library/core.jar" />
</target>
<target name="build" depends="compile" description="Build net library">

View File

@@ -8,16 +8,16 @@
<target name="compile" description="Compile sources">
<condition property="core-built">
<available file="../../../core/core.jar" />
<available file="../../../core/library/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/library/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/library/core.jar; library/itext.jar" />
</target>
<target name="build" depends="compile" description="Build PDF library">

View File

@@ -8,16 +8,16 @@
<target name="compile" description="Compile sources">
<condition property="core-built">
<available file="../../../core/core.jar" />
<available file="../../../core/library/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/library/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/library/core.jar; library/RXTXcomm.jar" />
</target>
<target name="build" depends="compile" description="Build serial library">

View File

@@ -8,16 +8,16 @@
<target name="compile" description="Compile sources">
<condition property="core-built">
<available file="../../../core/core.jar" />
<available file="../../../core/library/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/library/core.jar" />
<mkdir dir="bin" />
<javac target="1.5"
srcdir="src" destdir="bin"
encoding="UTF-8"
includeAntRuntime="false"
classpath="../../../core/core.jar; library/gstreamer-java.jar; library/jna.jar" />
classpath="../../../core/library/core.jar; library/gstreamer-java.jar; library/jna.jar" />
</target>
<target name="build" depends="compile" description="Build video library">