aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2012-07-06 07:22:04 -0700
committerScott Jackson <daneren2005@gmail.com>2012-07-06 07:22:04 -0700
commitf7c41e5c9799ce3e589db1d4f58c4f83326e9455 (patch)
treea5cfb33221df0a39511d9f3d256bc644a4f44940
parenta1a18f77a50804e0127dfa4b0f5240c49c541184 (diff)
downloaddsub-f7c41e5c9799ce3e589db1d4f58c4f83326e9455.tar.gz
dsub-f7c41e5c9799ce3e589db1d4f58c4f83326e9455.tar.bz2
dsub-f7c41e5c9799ce3e589db1d4f58c4f83326e9455.zip
No intention to support blackberry
-rw-r--r--subsonic-blackberry/README.txt18
-rw-r--r--subsonic-blackberry/build.xml45
2 files changed, 0 insertions, 63 deletions
diff --git a/subsonic-blackberry/README.txt b/subsonic-blackberry/README.txt
deleted file mode 100644
index f36dfd38..00000000
--- a/subsonic-blackberry/README.txt
+++ /dev/null
@@ -1,18 +0,0 @@
-http://javaandjava.blogspot.com/2010/05/ant-script-for-blackberry-development.html
-
-Downloaded Ant 1.8.1
-Downloaded bb-ant-tools 1.2.9
-Use simultors in plugin: c:\progs\Eclipse\plugins\net.rim.ejde.componentpack5.0.0_5.0.0.25\components\simulator\9550.bat
-### Downloaded BlackBerry Device Simulators v5.0.0.419 (9530)
-
-Enable IntelliJ plugin "Ant support"
-Created module subsonic-blackberry in IntelliJ.
-Set module language level to 1.3
-Added c:\progs\Eclipse\plugins\net.rim.ejde.componentpack5.0.0_5.0.0.25\components\lib\net_rim_api.jar as library in IntelliJ.
-Attach javadoc c:\progs\Eclipse\plugins\net.rim.ejde.componentpack5.0.0_5.0.0.25\components\docs
-
-
-To start sim:
-fledge.exe /app=Jvm.dll /handheld=9550 /app-param=JvmDebugFile:log.txt
-
-In IntelliJ: Add dummy run config which executes ant goal and tails log.txt \ No newline at end of file
diff --git a/subsonic-blackberry/build.xml b/subsonic-blackberry/build.xml
deleted file mode 100644
index f71e899b..00000000
--- a/subsonic-blackberry/build.xml
+++ /dev/null
@@ -1,45 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project name="subsonic" default="build">
-
- <property file="local.properties"/>
-
- <taskdef resource="bb-ant-defs.xml" classpath="${bb-ant-tools.classpath}"/>
-
- <target name="init">
- <mkdir dir="target"/>
- </target>
-
- <target name="clean">
- <delete dir="target"/>
- </target>
-
- <target name="build" depends="init">
- <rapc output="target/HelloWorldApp" srcdir="src" jdehome="${jde.home}">
- <jdp title="Subsonic" vendor="RIM" version="1.0" type="cldc"/>
- </rapc>
- </target>
-
-
- <target name="deploy">
- <copydir src="target" dest="${sim.dir}"/>
- </target>
-
- <!--<target name="build_and_deploy" depends="test">-->
- <!--<copydir src="${dest.dir}" dest="${sim.dir}" />-->
- <!--</target>-->
-
- <!--<target name="launch_simulator">-->
- <!--<exec dir="${sim.dir}" executable="cmd">-->
- <!--<arg value="/c"/>-->
- <!--<arg value="8520.bat"/>-->
- <!--<arg value="-p"/>-->
- <!--</exec>-->
- <!--</target>-->
-
- <!--<target name="deploy_and_launch_simulator" depends="deploy, launch_simulator">-->
- <!--</target>-->
-
- <!--<target name="build_deploy_and_launch_simulator" depends="build_and_deploy, launch_simulator">-->
- <!--</target>-->
-
-</project>