diff options
author | Sven Gothel <[email protected]> | 2011-12-07 01:40:03 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-12-07 01:40:03 +0100 |
commit | d9bbbbad1130bbe74856ecedb7cf1d2cc124b352 (patch) | |
tree | 26e1d136ecec9be94312c041ea62179c6c042822 /etc/test_dbg.bat | |
parent | e07315e1eb7113e5bc02c1b092ecd94380104725 (diff) |
Update etc/test* scripts: Remove native lib config, use native-jars. Remove old JOGL jars in classpath
Diffstat (limited to 'etc/test_dbg.bat')
-rwxr-xr-x | etc/test_dbg.bat | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/etc/test_dbg.bat b/etc/test_dbg.bat index 4d21cc23a..33bbb912b 100755 --- a/etc/test_dbg.bat +++ b/etc/test_dbg.bat @@ -1,20 +1,13 @@ set BLD_DIR=jar
-set LIB_DIR=lib
-set CP_ALL=.;%BLD_DIR%\gluegen-rt.jar;%BLD_DIR%\nativewindow.all.jar;%BLD_DIR%\jogl.all.jar;%BLD_DIR%\newt.all.jar
+set CP_ALL=.;%BLD_DIR%\gluegen-rt.jar;%BLD_DIR%\jogl.all.jar
echo CP_ALL %CP_ALL%
set D_ARGS="-Djogamp.debug=all" "-Dnativewindow.debug=all" "-Djogl.debug=all" "-Dnewt.debug=all"
set X_ARGS="-Dsun.java2d.noddraw=true" "-Dsun.awt.noerasebackground=true"
-REM java -classpath %CP_ALL% "-Djava.library.path=%LIB_DIR%" %X_ARGS% javax.media.opengl.awt.GLCanvas > java-win64.log 2>&1
+REM java -classpath %CP_ALL% %X_ARGS% %D_ARGS% com.jogamp.newt.opengl.GLCanvas >> test.log 2>&1
+java -classpath %CP_ALL% %X_ARGS% %D_ARGS% com.jogamp.newt.opengl.GLWindow >> test_dbg.log 2>&1
-REM java -classpath %CP_ALL% "-Djava.library.path=%LIB_DIR%" %X_ARGS% com.jogamp.common.GlueGenVersion > test.log 2>&1
-REM java -classpath %CP_ALL% "-Djava.library.path=%LIB_DIR%" %X_ARGS% com.jogamp.nativewindow.NativeWindowVersion >> test.log 2>&1
-REM java -classpath %CP_ALL% "-Djava.library.path=%LIB_DIR%" %X_ARGS% com.jogamp.opengl.JoglVersion >> test.log 2>&1
-REM java -classpath %CP_ALL% "-Djava.library.path=%LIB_DIR%" %X_ARGS% com.jogamp.newt.NewtVersion >> test.log 2>&1
-REM java -classpath %CP_ALL% "-Djava.library.path=%LIB_DIR%" %X_ARGS% com.jogamp.newt.opengl.GLCanvas >> test.log 2>&1
-java -classpath %CP_ALL% "-Djava.library.path=%LIB_DIR%" %X_ARGS% %D_ARGS% com.jogamp.newt.opengl.GLWindow >> test_dbg.log 2>&1
-
-type test.log
+type test_dbg.log
|