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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
<project name="jfreechart-swt" default="all" basedir="..">
<!-- Initialisation. -->
<target name="initialise" description="Initialise required settings.">
<tstamp />
<property name="jfreechart.name" value="jfreechart" />
<property name="jfreechart.version" value="1.0.13" />
<property name="jcommon.name" value="jcommon" />
<property name="jcommon.version" value="1.0.16" />
<property name="builddir" value="${basedir}/build" />
<property name="jcommon.jar" value="${basedir}/lib/${jcommon.name}-${jcommon.version}.jar"/>
<property name="jfreechart.jar" value="${basedir}/lib/${jfreechart.name}-${jfreechart.version}.jar"/>
<!-- Edit the next line to link to the swt library you want, see README file in the swt folder -->
<property name="swt.jar" value="/home/dgilbert/swt-3.4-gtk-linux-x86/swt.jar"/>
<path id="build.classpath">
<pathelement location="${jcommon.jar}"/>
<pathelement location="${jfreechart.jar}"/>
<pathelement location="${swt.jar}"/>
</path>
</target>
<!-- Compile the JFreeChart SWT classes -->
<target name="compile-swtgraphics" depends="initialise"
description="Compile and package some utility SWT source code.">
<!-- create a temp build directory -->
<mkdir dir="${basedir}/build" />
<!-- compile the source -->
<javac srcdir="${basedir}/swt"
destdir="${basedir}/build"
debug="on"
deprecation="on"
source="1.3"
target="1.3">
<classpath refid="build.classpath" />
<include name="org/jfree/experimental/swt/**/*.java"/>
</javac>
<!-- make the jar -->
<jar jarfile="${basedir}/lib/swtgraphics2d.jar"
basedir="${basedir}/build" >
</jar>
<!-- delete the temp directory -->
<delete dir="${basedir}/build" />
</target>
<!-- Compile the JFreeChart SWT classes -->
<target name="compile-swt" depends="initialise"
description="Compile and package the JFreeChart SWT source code.">
<!-- create a temp build directory -->
<mkdir dir="${basedir}/build" />
<!-- compile the source -->
<javac srcdir="${basedir}/swt"
destdir="${basedir}/build"
debug="on"
deprecation="on"
source="1.3"
target="1.3">
<classpath refid="build.classpath" />
<include name="org/jfree/experimental/chart/**/*.java"/>
</javac>
<!-- make the jar -->
<jar jarfile="${basedir}/lib/${jfreechart.name}-${jfreechart.version}-swt.jar"
basedir="${basedir}/build" >
</jar>
<!-- delete the temp directory -->
<delete dir="${basedir}/build" />
</target>
<!-- ALL -->
<target name="all"
depends="compile-swtgraphics,compile-swt"
description="Compiles and package in jar files all the SWT related code in JFreeChart.">
</target>
</project>
|