head	1.1;
access;
symbols
	charm6_1:1.1
	charm_6_0_1:1.1
	charm6_0_1:1.1
	charm6_0:1.1;
locks; strict;
comment	@# @;


1.1
date	2007.06.05.19.01.54;	author cheelee;	state Exp;
branches;
next	;
commitid	c1c4665b2a24567;


desc
@@


1.1
log
@Added Separate build directory for Projections that would work with
Java JDK 1.3.1 and newer. This version will be frozen (pending several
bug fixes and feature additions) and kept as a
"backup" for users who have not upgraded to JDK5 and above which is the
requirement for the latest projections features.
@
text
@#!/bin/sh

jarpath="`dirname $0`/projections.jar"

if test -x /usr/bin/cygpath
then 
  if test "`uname -o`" = "Cygwin"
  then
    jarpath=`/usr/bin/cygpath -w -a $jarpath`
  fi 
fi

java -ms256000000 -mx1000000000 \
  -classpath $jarpath \
  projections.analysis.ProjMain $*
@
