2007-10-23 12:12:27 -07:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project name="javame" default="build">
|
|
|
|
|
2007-11-14 07:27:06 -08:00
|
|
|
<property file="../build.properties"/>
|
2007-10-23 12:12:27 -07:00
|
|
|
|
2007-11-21 19:52:30 -08:00
|
|
|
<path id="wtk-build-path">
|
|
|
|
<fileset dir="${WTK-home}/lib">
|
|
|
|
<include name="cldcapi11.jar"/>
|
|
|
|
<include name="midpapi20.jar"/>
|
|
|
|
<include name="mmapi.jar"/>
|
|
|
|
<include name="jsr234.jar"/>
|
|
|
|
<include name="satsa-apdu.jar"/>
|
|
|
|
</fileset>
|
|
|
|
<pathelement location="../core/core.jar"/>
|
|
|
|
</path>
|
|
|
|
|
2007-10-23 12:12:27 -07:00
|
|
|
<target name="init">
|
|
|
|
<tstamp/>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="build" depends="init">
|
2007-11-26 08:21:57 -08:00
|
|
|
|
|
|
|
<fail message="Please set 'JDK1.4-classes' in build.properties">
|
|
|
|
<condition>
|
|
|
|
<not>
|
|
|
|
<available file="${JDK1.4-classes}" type="file"/>
|
|
|
|
</not>
|
|
|
|
</condition>
|
|
|
|
</fail>
|
|
|
|
<fail message="Please set 'WTK-home' in build.properties">
|
|
|
|
<condition>
|
|
|
|
<not>
|
|
|
|
<available file="${WTK-home}" type="dir"/>
|
|
|
|
</not>
|
|
|
|
</condition>
|
|
|
|
</fail>
|
|
|
|
|
2007-10-23 12:12:27 -07:00
|
|
|
<mkdir dir="build"/>
|
|
|
|
<javac srcdir="src"
|
|
|
|
destdir="build"
|
|
|
|
source="1.4"
|
|
|
|
target="1.4"
|
2007-11-20 10:22:52 -08:00
|
|
|
bootclasspath="${JDK1.4-classes}"
|
2007-10-23 12:12:27 -07:00
|
|
|
optimize="true"
|
|
|
|
debug="true"
|
|
|
|
deprecation="true"
|
|
|
|
fork="true">
|
2007-11-21 19:52:30 -08:00
|
|
|
<classpath refid="wtk-build-path"/>
|
2007-10-23 12:12:27 -07:00
|
|
|
</javac>
|
|
|
|
|
2007-11-07 13:56:22 -08:00
|
|
|
<unzip src="../core/core.jar" dest="build"/>
|
|
|
|
|
2007-10-23 12:12:27 -07:00
|
|
|
<mkdir dir="build-j2me"/>
|
2007-11-21 19:52:30 -08:00
|
|
|
<property name="preverify-classpath" refid="wtk-build-path"/>
|
2007-11-07 13:56:22 -08:00
|
|
|
<exec executable="${WTK-home}/bin/preverify1.1">
|
2007-11-21 19:52:30 -08:00
|
|
|
<arg line="-classpath ${preverify-classpath} -d build-j2me build"/>
|
2007-10-23 12:12:27 -07:00
|
|
|
</exec>
|
|
|
|
|
2007-11-07 15:02:50 -08:00
|
|
|
<copy todir="build-j2me">
|
|
|
|
<fileset dir=".">
|
|
|
|
<include name="res/**"/>
|
|
|
|
</fileset>
|
|
|
|
</copy>
|
|
|
|
|
2007-11-07 13:56:22 -08:00
|
|
|
<jar jarfile="ZXingReader.jar" basedir="build-j2me" manifest="src/com/google/zxing/client/j2me/MANIFEST.MF"/>
|
|
|
|
|
2007-11-12 12:22:22 -08:00
|
|
|
<!-- get .jar size to include it in the .jad file -->
|
2007-11-26 08:21:57 -08:00
|
|
|
<length file="ZXingReader.jar" property="jar-size"/>
|
|
|
|
|
2007-11-15 10:17:20 -08:00
|
|
|
<copy file="ZXingReader.jad.template" tofile="ZXingReader.jad" overwrite="true">
|
2007-11-07 13:56:22 -08:00
|
|
|
<filterset>
|
|
|
|
<filter token="JAR_SIZE" value="${jar-size}"/>
|
|
|
|
</filterset>
|
|
|
|
</copy>
|
2007-10-23 12:12:27 -07:00
|
|
|
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="clean">
|
|
|
|
<delete dir="build"/>
|
|
|
|
<delete dir="build-j2me"/>
|
2007-11-07 13:56:22 -08:00
|
|
|
<delete file="ZXingReader.jar"/>
|
|
|
|
<delete file="ZXingReader.jad"/>
|
2007-10-23 12:12:27 -07:00
|
|
|
</target>
|
|
|
|
|
|
|
|
</project>
|