Added first cut at script to build a Blackberry client -- does not yet seem to work.
authorsrowen <srowen@59b500cc-1b3d-0410-9834-0bbf25fbcc57>
Tue, 11 Dec 2007 20:18:57 +0000 (20:18 +0000)
committersrowen <srowen@59b500cc-1b3d-0410-9834-0bbf25fbcc57>
Tue, 11 Dec 2007 20:18:57 +0000 (20:18 +0000)
git-svn-id: http://zxing.googlecode.com/svn/trunk@112 59b500cc-1b3d-0410-9834-0bbf25fbcc57

rim/build.xml [new file with mode: 0644]

diff --git a/rim/build.xml b/rim/build.xml
new file mode 100644 (file)
index 0000000..142c839
--- /dev/null
@@ -0,0 +1,50 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ Copyright 2007 Google Inc.
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<project name="rim" default="build">
+
+  <property file="../build.properties"/>
+
+  <target name="init">
+    <tstamp/>
+    <fail message="Please set 'BB-JDK-home' in build.properties">
+      <condition>
+        <not>
+          <available file="${BB-JDK-home}" type="dir"/>
+        </not>
+      </condition>
+    </fail>
+  </target>
+
+  <target name="build" depends="init,clean">
+    <copy file="../javame/ZXingReaderBasic.jad" todir="."/>
+    <java jar="${BB-JDK-home}/rapc.jar" fork="true">
+      <arg value="import=${BB-JDK-home}/net_rim_api.jar"/>
+      <arg value="codename=ZXingReaderBasic"/>
+      <arg value="-midlet"/>
+      <arg value="jad=ZXingReaderBasic.jad"/>
+      <arg value="../javame/ZXingReaderBasic.jar"/>
+    </java>
+  </target>
+
+
+  <target name="clean">
+    <delete dir="." includes="ZXingReader*"/>
+  </target>
+
+</project>