/[projects]/android/TrainInfoCommon/build.xml
ViewVC logotype

Contents of /android/TrainInfoCommon/build.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1068 - (show annotations) (download) (as text)
Thu Sep 16 15:47:40 2010 UTC (13 years, 8 months ago) by torben
File MIME type: text/xml
File size: 755 byte(s)
add ant build file for TrainInfoCommon
1 <project name="TrainInfoCommon" default="jar">
2
3 <property name="builddir" value="antbuild" />
4 <property name="jarfile" value="${ant.project.name}.jar" />
5
6 <path id="path.base">
7 <fileset dir="./">
8 <include name="*.jar" />
9 </fileset>
10 </path>
11
12 <target name="clean">
13 <delete file="${jarfile}" />
14 <delete dir="${builddir}" />
15 </target>
16
17 <target name="init">
18 <mkdir dir="${builddir}" />
19 </target>
20
21 <target name="compile" depends="init">
22 <javac srcdir="src/" destdir="${builddir}" debug="off" optimize="on" includeantruntime="false" updatedProperty="didcompile">
23 <classpath refid="path.base" />
24 </javac>
25 </target>
26
27
28 <target name="jar" depends="compile">
29 <jar destfile="${jarfile}" basedir="${builddir}" />
30 </target>
31
32 </project>

  ViewVC Help
Powered by ViewVC 1.1.20