summaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/build.xml b/build.xml
index 9baf726..7f8ddc4 100644
--- a/build.xml
+++ b/build.xml
@@ -6,6 +6,7 @@
<property name="dist" location="dist" />
<property name="jar" location="jar" />
<property name="classes" location="classes" />
+ <property name="jcalendar" location="libs/FLib/JCalendar/build/jcalendar.jar" />
<target name="init">
<tstamp />
@@ -14,6 +15,10 @@
<target name="compile" depends="init" description="compile the source" >
<javac srcdir="${sources}" destdir="${classes}">
+ <classpath>
+ <pathelement path="${classpath}"/>
+ <pathelement location="${jcalendar}"/>
+ </classpath>
<compilerarg value="-Xlint:deprecation" />
</javac>
<copy todir="${classes}/icons">
@@ -23,6 +28,7 @@
<fileset dir="images" />
</copy>
<copy file="netcalendar.conf" tofile="${classes}/netcalendar.conf" />
+ <copy file="${jcalendar}" tofile="${classes}/jcalendar.jar" />
</target>
<target name="jar" depends="compile" description="generate the jar" >