Hi kurizuto,
thats all, how can i compile the entire source , and what i need ^^...
you need to add all
jar files in the
lib-folder to your classpath in order to compile the software.
The following
ant build-script will compile and run the software:
<project name="WiimoteWhiteboard" default="run" basedir=".">
<property name="src" location="src"/>
<property name="lib" location="lib"/>
<property name="bin" location="bin"/>
<target name="init">
<mkdir dir="${bin}"/>
</target>
<target name="compile" depends="init">
<javac srcdir="${src}" destdir="${bin}">
<classpath>
<fileset dir="${lib}" includes="*.jar"/>
<pathelement path="${java.class.path}/"/>
</classpath>
</javac>
</target>
<target name="run" depends="compile">
<java dir="${bin}" fork="true" classname="org.uweschmidt.wiimote.whiteboard.WiimoteWhiteboard">
<classpath>
<pathelement path="${bin}"/>
<pathelement path="${src}"/>
<fileset dir="${lib}" includes="*.jar"/>
<pathelement path="${java.class.path}/"/>
</classpath>
</java>
</target>
<target name="clean">
<delete dir="${bin}"/>
</target>
</project>
because i want to traslate to other languages, is a powerfull tool for students and teachers ...
Support for other languages besides English is planned for the next version.
You can even change most of the interface right now:
http://www.wiimoteproject.com/wiimote-whiteboard/java-version-developed-under-mac-os-x/msg3794/#msg3794Uwe