aboutsummaryrefslogtreecommitdiffstats
path: root/tools/jackpotc/test/oldgears/build.xml
blob: 80a045cb4ae3581349be9c39b1a61d48f2a5432e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="UTF-8"?>

<!--
    invoke the shell scripts 'setup' prior to building this project.
    @author Michael Bien
-->
<project name="oldgears" default="build" basedir=".">

    <description>Builds, tests, and runs the project oldgears.</description>

    <target name="build" depends="clean">
        <exec dir="${basedir}/../../" executable="/bin/sh" spawn="false" failonerror="true">
            <arg value="bttf"/>
        </exec>
        <javac srcdir="src/jogl111"  destdir="build/jogl111" classpath="lib/old/jogl.jar:lib/old/gluegen-rt.jar" includeantruntime="false"/>
        <javac srcdir="gensrc/jogl2" destdir="build/jogl2" classpath="lib/new/jogl.all.jar:lib/new/jogl.awt.jar:lib/new/gluegen-rt.jar" includeantruntime="false"/>
    </target>

    <target name="clean">
        <delete dir="build" quiet="true"/>
        <delete dir="gensrc" quiet="true"/>
        <mkdir dir="build"/>
        <mkdir dir="gensrc"/>
        <mkdir dir="build/jogl111"/>
        <mkdir dir="build/jogl2"/>
    </target>

</project>