author | John Kern <johnk@symbian.org> |
Fri, 29 Jan 2010 16:32:12 -0800 | |
changeset 62 | 040d2c998a7b |
parent 59 | 9ffe5293bebc |
child 65 | 6bec0231e8d2 |
permissions | -rwxr-xr-x |
59 | 1 |
#!/bin/sh |
2 |
PDE_ECLIPSE_DIR=/usr/eclipse |
|
3 |
PDE_VER=3.5.1.R35x_20090820 |
|
4 |
EQUINOX_VER=1.0.201.R35x_v20090715 |
|
62
040d2c998a7b
source level most be provided on command line; work is variable
John Kern <johnk@symbian.org>
parents:
59
diff
changeset
|
5 |
WS_DIR=/home/symbian/scratch/029/wrttools |
040d2c998a7b
source level most be provided on command line; work is variable
John Kern <johnk@symbian.org>
parents:
59
diff
changeset
|
6 |
BUILD_CONF_DIR=${WS_DIR}/org.symbian.tools.wrttools.feature |
59 | 7 |
JAVA_CMD=/usr/java/jdk1.6.0_18/bin/java |
8 |
BUILD_FILE=${PDE_ECLIPSE_DIR}/plugins/org.eclipse.pde.build_${PDE_VER}/scripts/productBuild/productBuild.xml |
|
62
040d2c998a7b
source level most be provided on command line; work is variable
John Kern <johnk@symbian.org>
parents:
59
diff
changeset
|
9 |
SOURCE_LEVEL=1.5 |
59 | 10 |
|
11 |
cd ${BUILD_CONF_DIR} |
|
62
040d2c998a7b
source level most be provided on command line; work is variable
John Kern <johnk@symbian.org>
parents:
59
diff
changeset
|
12 |
${JAVA_CMD} -jar -source ${SOURCE_LEVEL} -target ${SOURCE_LEVEL} ${PDE_ECLIPSE_DIR}/plugins/org.eclipse.equinox.launcher_${EQUINOX_VER}.jar -application org.eclipse.ant.core.antRunner -buildfile build.xml |
59 | 13 |