author | Eugene Ostroukhov <eugeneo@symbian.org> |
Wed, 07 Apr 2010 13:34:34 -0700 | |
changeset 299 | a240ab689b9b |
parent 65 | 6bec0231e8d2 |
permissions | -rw-r--r-- |
59 | 1 |
#!/bin/sh |
65
6bec0231e8d2
added script to drive the builds. updated others to accept parameters
John Kern <johnk@symbian.org>
parents:
62
diff
changeset
|
2 |
|
6bec0231e8d2
added script to drive the builds. updated others to accept parameters
John Kern <johnk@symbian.org>
parents:
62
diff
changeset
|
3 |
set -x |
6bec0231e8d2
added script to drive the builds. updated others to accept parameters
John Kern <johnk@symbian.org>
parents:
62
diff
changeset
|
4 |
|
59 | 5 |
ECLIPSE_DIR=/usr/eclipse |
6 |
PDE_VER=3.5.1.R35x_20090820 |
|
7 |
EQUINOX_VER=1.0.201.R35x_v20090715 |
|
8 |
JAVA_CMD=/usr/java/jdk1.6.0_18/bin/java |
|
65
6bec0231e8d2
added script to drive the builds. updated others to accept parameters
John Kern <johnk@symbian.org>
parents:
62
diff
changeset
|
9 |
ANT_SCRIPT=${1} |
59 | 10 |
|
65
6bec0231e8d2
added script to drive the builds. updated others to accept parameters
John Kern <johnk@symbian.org>
parents:
62
diff
changeset
|
11 |
${JAVA_CMD} -jar ${ECLIPSE_DIR}/plugins/org.eclipse.equinox.launcher_${EQUINOX_VER}.jar -application org.eclipse.ant.core.antRunner -buildfile ${ANT_SCRIPT} |
59 | 12 |
|
65
6bec0231e8d2
added script to drive the builds. updated others to accept parameters
John Kern <johnk@symbian.org>
parents:
62
diff
changeset
|
13 |
|
6bec0231e8d2
added script to drive the builds. updated others to accept parameters
John Kern <johnk@symbian.org>
parents:
62
diff
changeset
|
14 |