diff options
Diffstat (limited to 'nbproject/ide-file-targets.xml')
-rw-r--r-- | nbproject/ide-file-targets.xml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/nbproject/ide-file-targets.xml b/nbproject/ide-file-targets.xml new file mode 100644 index 0000000..f5597bc --- /dev/null +++ b/nbproject/ide-file-targets.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project basedir=".." name="jogl-demos-IDE"> + <property name="ant.script" value="make/build.xml"/> + <!-- TODO: edit the following target according to your needs --> + <!-- (more info: http://www.netbeans.org/kb/articles/freeform-config.html#runsingle) --> + <target name="run-selected-file-in-src"> + <fail unless="run.class">Must set property 'run.class'</fail> + <java classname="${run.class}" failonerror="true" fork="true"> + <jvmarg value="-Djava.library.path=${basedir}/../gluegen/build/obj:${basedir}/../jogl/build/jogl/obj:${basedir}/../jogl/build/newt/obj:${basedir}/../jogl/build/nativewindow/obj:"/> + <classpath> + <pathelement path="build/jogl-demos.jar:../gluegen/build/gluegen-rt.jar:../jogl/build/jogl/jogl.all.jar:../jogl/build/nativewindow/nativewindow.all.jar:../jogl/build/newt/newt.all.jar:../joal/build/joal.jar"/> + <pathelement location="build"/> + </classpath> + </java> + </target> +</project> |