diff options
author | Michael Bien <[email protected]> | 2009-10-27 18:56:37 +0100 |
---|---|---|
committer | Michael Bien <[email protected]> | 2009-10-27 18:56:37 +0100 |
commit | 92e523588e6ebb9ef6b7ad3156930b8e0ea2597f (patch) | |
tree | 37b87f8bab234fad73da386fdd91455147fd9ba9 /nbproject | |
parent | e15fbc28ae250f3f944c4061d28ef7c41799d2de (diff) |
initial import of JOGL-JOCL interoperability sample (WIP).
Diffstat (limited to 'nbproject')
-rw-r--r-- | nbproject/configs/GLCLinterop.properties | 1 | ||||
-rw-r--r-- | nbproject/project.properties | 15 |
2 files changed, 14 insertions, 2 deletions
diff --git a/nbproject/configs/GLCLinterop.properties b/nbproject/configs/GLCLinterop.properties new file mode 100644 index 0000000..710c784 --- /dev/null +++ b/nbproject/configs/GLCLinterop.properties @@ -0,0 +1 @@ +main.class=com.mbien.opencl.demos.joglinterop.GLCLInteroperabilityDemo diff --git a/nbproject/project.properties b/nbproject/project.properties index 63f2a2e..f4815bf 100644 --- a/nbproject/project.properties +++ b/nbproject/project.properties @@ -21,11 +21,17 @@ dist.dir=dist dist.jar=${dist.dir}/jocl-demos.jar dist.javadoc.dir=${dist.dir}/javadoc excludes= -file.reference.gluegen-rt.jar=/home/mbien/NetBeansProjects/JOGL/gluegen/build/gluegen-rt.jar +file.reference.gluegen-rt.jar=../gluegen/build/gluegen-rt.jar +file.reference.jogl.all.jar=../jogl/build/jogl/jogl.all.jar +file.reference.nativewindow.all.jar=../jogl/build/nativewindow/nativewindow.all.jar +file.reference.newt.all.jar=../jogl/build/newt/newt.all.jar includes=** jar.compress=false javac.classpath=\ ${reference.jocl.jar}:\ + ${file.reference.jogl.all.jar}:\ + ${file.reference.newt.all.jar}:\ + ${file.reference.nativewindow.all.jar}:\ ${file.reference.gluegen-rt.jar} # Space-separated list of extra javac options javac.compilerargs= @@ -60,7 +66,12 @@ run.classpath=\ # Space-separated list of JVM arguments used when running the project # (you may also define separate properties like run-sys-prop.name=value instead of -Dname=value # or test-sys-prop.name=value to set system properties for unit tests): -run.jvmargs=-Djava.library.path="${basedir}/../jocl/build/natives/jocl" +run.jvmargs=-Djava.library.path="\ + ${basedir}/../jocl/build/natives/jocl:\ + ${basedir}/../jogl/build/jogl/obj:\ + ${basedir}/../jogl/build/nativewindow/obj:\ + ${basedir}/../jogl/build/newt/obj:\ + ${basedir}/../gluegen/build/obj" run.test.classpath=\ ${javac.test.classpath}:\ ${build.test.classes.dir} |