diff options
author | Kenneth Russel <[email protected]> | 2003-07-15 22:32:06 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2003-07-15 22:32:06 +0000 |
commit | beaca5fa8a64e8b7c5e9452fa9828eb9a217bd2e (patch) | |
tree | b9b6ac76a155de85f6b2d2ab0b29686c55ec510d /make | |
parent | ecb910404a7ba50afa71b3bf18689dc80d8008a5 (diff) |
Fixed bug in Animator where it would hang upon stopping if exception
was thrown during init(). Fixed build.xml files to get javac to
produce source file and line number information. Fixed demos to pop up
a dialog box if an extension they need is unsupported.
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/jogl-demos/trunk@12 3298f667-5e0e-4b4a-8ed4-a3559d26a5f4
Diffstat (limited to 'make')
-rw-r--r-- | make/build.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/build.xml b/make/build.xml index 2f5fd1f..4de14e0 100644 --- a/make/build.xml +++ b/make/build.xml @@ -49,7 +49,7 @@ <pathelement path="${classpath}" /> <pathelement location="${jogl.jar}" /> </path> - <javac destdir="${classes}" excludes="demos/cg/**" source="1.4"> + <javac destdir="${classes}" excludes="demos/cg/**" source="1.4" debug="true" debuglevel="source,lines"> <src path="${src}" /> <classpath refid="jogl.classpath" /> </javac> |