scripts/runAnt.sh
author Eugene Ostroukhov <eugeneo@symbian.org>
Fri, 29 Jan 2010 10:00:27 -0800
changeset 60 ad7b5602414f
parent 59 9ffe5293bebc
child 62 040d2c998a7b
permissions -rwxr-xr-x
Build adjustments
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
59
9ffe5293bebc check in build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
     1
#!/bin/sh
9ffe5293bebc check in build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
     2
PDE_ECLIPSE_DIR=/usr/eclipse
9ffe5293bebc check in build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
     3
PDE_VER=3.5.1.R35x_20090820
9ffe5293bebc check in build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
     4
EQUINOX_VER=1.0.201.R35x_v20090715
9ffe5293bebc check in build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
     5
BUILD_CONF_DIR=/home/symbian/workspace/wrttools-fc/wrttools/org.symbian.tools.wrttools.feature
9ffe5293bebc check in build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
     6
JAVA_CMD=/usr/java/jdk1.6.0_18/bin/java
9ffe5293bebc check in build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
     7
BUILD_FILE=${PDE_ECLIPSE_DIR}/plugins/org.eclipse.pde.build_${PDE_VER}/scripts/productBuild/productBuild.xml 
9ffe5293bebc check in build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
     8
9ffe5293bebc check in build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
     9
cd ${BUILD_CONF_DIR}
9ffe5293bebc check in build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    10
${JAVA_CMD} -jar ${PDE_ECLIPSE_DIR}/plugins/org.eclipse.equinox.launcher_${EQUINOX_VER}.jar -application org.eclipse.ant.core.antRunner -buildfile build.xml
9ffe5293bebc check in build scripts
John Kern <johnk@symbian.org>
parents:
diff changeset
    11