Update of /cvsroot/ccmtools/ccmtools/test/JavaAssembly/prototype2/bin
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv14346/test/JavaAssembly/prototype2/bin
Added Files:
runClient
Log Message:
Added second prototype for Java assemblies.
--- NEW FILE: runClient ---
#!/bin/sh
if [ -z "$CCMTOOLS_HOME" ]; then
echo "ERROR!"
echo "Environment variable CCMTOOLS_HOME not found!"
exit
fi
CLASSPATH=$CCMTOOLS_HOME/lib/ccm-runtime.jar:./xxx/build:$CLASSPATH
$JAVA_HOME/bin/java -enableassertions -cp $CLASSPATH wamas.Main
|