front_processing/extern/TUIO_JAVA/src/compile.sh
author bastiena
Wed, 01 Aug 2012 12:13:22 +0200
changeset 60 c6daddc7415a
parent 10 925b7ee746e3
permissions -rw-r--r--
MID: The stick figure on the right side of the debug window appear only when a user is detected.

#!/bin/sh
cd src
javac -Xlint:unchecked -O -source 1.5 -target 1.5 -cp . *.java TUIO/*.java com/illposed/osc/*.java
jar cfm ../TuioDemo.jar manifest.inc *.class TUIO/*.class com/illposed/osc/*.class com/illposed/osc/utility/*.class
jar cf ../libTUIO.jar TUIO/*.class com/illposed/osc/*.class com/illposed/osc/utility/*.class
rm -f *.class TUIO/*.class com/illposed/osc/*.class com/illposed/osc/utility/*.class
cd ..