-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.sh
More file actions
executable file
·32 lines (26 loc) · 779 Bytes
/
Copy pathbuild.sh
File metadata and controls
executable file
·32 lines (26 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/bin/bash
echo
echo "SWIXML Build System"
echo "-------------------"
echo
echo "JAVA_HOME"
if [ -z "$JAVA_HOME" ] ; then
echo 'ERROR: JAVA_HOME not found in your environment.'
echo
echo 'Please, set the JAVA_HOME variable in your environment to match the'
echo 'location of the Java Virtual Machine you want to use.'
exit 1
fi
if [ `uname | grep -n CYGWIN` ] ; then
PS=";"
elif [ `uname | grep -n Windows` ] ; then
PS=";"
else
PS=":"
fi
LOCALCLASSPATH=${JAVA_HOME}/lib/tools.jar${PS}./lib/ant.jar${PS}./lib/ant-launcher.jar${PS}./lib/jdom.jar${PS}./lib/j2h.jar${PS}./lib/jgoodies-forms-1.4.0.jar
ANT_HOME=./lib
echo Starting Ant...
echo
echo $LOCALCLASSPATH
$JAVA_HOME/bin/java -Dant.home=$ANT_HOME -classpath $LOCALCLASSPATH org.apache.tools.ant.Main $*