[quote]This tutorial was written by Will, who has contributed a lot to the Getting Started Guide. 
[/quote]
I see! So it’s Will’s nice tutorial. You produced the PDF? 
[quote]If you download Xith3D from CVS you’ll have all the third-party libraries in one directory.
[/quote]
I’ve downloaded the community build tar.gz but just used the Xith3d src directory. Now I get the point that I’ve to include the lwjgl.jar too… That’s it. Thanks.
This leads to the question: Why does the Xith3d source need lwjgl? I definitely don’t need the lwjgl.jar in order to run all the Xith3d demos. 
[quote]Btw. your script doesn’t work for me (dir: *.java: No such file or directory).
[/quote]
Yes, it should read
dir /b /s *.java | gawk "{sub(/^.+src\\/, \"\"); system(\"javac -d bin \" $0)}"
… and you’ve to start it from within the “src/” directory (where a “dir” shows the “com/” folder then). These braindead " are just needed for the sucking Win32 dosbox. On a real console (Unix) it would read:
ls -dontknowswitch *java | gawk '{sub(/^.+src\\/, ""); system("javac -d bin " $0)}'
(A very good reason to switch to Linux in the future 
[quote]I think Ant is used by a lot of projects, is integrated in Eclipse and has won several awards. It’s really worth downloading. 
[/quote]
For distributing sources this is a good idea. For my home stuff I’ve added a one line AWK to JBuilder to do Javadocs and JARs.
(I really love GAWK.)