summaryrefslogtreecommitdiff
path: root/java/perftests/bin/setupclasspath.sh
diff options
context:
space:
mode:
Diffstat (limited to 'java/perftests/bin/setupclasspath.sh')
-rwxr-xr-xjava/perftests/bin/setupclasspath.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/java/perftests/bin/setupclasspath.sh b/java/perftests/bin/setupclasspath.sh
new file mode 100755
index 0000000000..a660392e77
--- /dev/null
+++ b/java/perftests/bin/setupclasspath.sh
@@ -0,0 +1,9 @@
+if [ -z $QPID_HOME ] ; then
+ echo "QPID_HOME must be set"
+ exit
+fi
+CP=$QPID_HOME/lib/qpid-incubating.jar:../target/classes
+
+if [ `uname -o` == "Cygwin" ] ; then
+ CP=`cygpath --path --windows $CP`
+fi