front_processing/extern/TUIO_JAVA/src/compile.sh
author bastiena
Thu, 15 Mar 2012 13:33:21 +0100
changeset 3 92f19af39024
parent 0 6fefd4afe506
child 9 0f44b7360c8d
permissions -rw-r--r--
Middleware : Swipe & Push & Jump(Experimental) Detectors ant events added Server modified for gesture detection TUIO Server C# Modified : Hand cursors redirected to /TUIO/3DCur channel New kind of OSC message created (TuioString) for gesture detection, using /TUIO/_siP channel. TUIO Processing Java Modified : Hand cursors redirected to /TUIO/3DCur channel New kind of OSC message created (TuioString) for gesture detection, using /TUIO/_siP channel. Front Processing : Mask added and modifications in the drawing process New front for gesture detection (just showing a text message in the mask for the moment)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
6fefd4afe506 First Import
bastiena
parents:
diff changeset
     1
#!/bin/sh
6fefd4afe506 First Import
bastiena
parents:
diff changeset
     2
cd src
6fefd4afe506 First Import
bastiena
parents:
diff changeset
     3
javac -Xlint:unchecked -O -source 1.5 -target 1.5 -cp . *.java TUIO/*.java com/illposed/osc/*.java
6fefd4afe506 First Import
bastiena
parents:
diff changeset
     4
jar cfm ../TuioDemo.jar manifest.inc *.class TUIO/*.class com/illposed/osc/*.class com/illposed/osc/utility/*.class
6fefd4afe506 First Import
bastiena
parents:
diff changeset
     5
jar cf ../libTUIO.jar TUIO/*.class com/illposed/osc/*.class com/illposed/osc/utility/*.class
6fefd4afe506 First Import
bastiena
parents:
diff changeset
     6
rm -f *.class TUIO/*.class com/illposed/osc/*.class com/illposed/osc/utility/*.class
6fefd4afe506 First Import
bastiena
parents:
diff changeset
     7
cd ..