diff options
author | Michael Bien <[email protected]> | 2009-07-24 15:40:12 +0200 |
---|---|---|
committer | Michael Bien <[email protected]> | 2009-07-24 15:40:12 +0200 |
commit | 801df10c0ee6ac6da81f1eb770dbc8a7ff7c5e38 (patch) | |
tree | 72c76adc3ea36ac046f83190b50519a1500a7d37 | |
parent | 1f65dedf406455731fb682404a01c96aa85d5ae1 (diff) |
added NetBeans project files
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | nbproject/.gitignore | 1 | ||||
-rwxr-xr-x | nbproject/project.xml | 132 |
3 files changed, 134 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..378eac25d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +build diff --git a/nbproject/.gitignore b/nbproject/.gitignore new file mode 100644 index 000000000..3e18ebf09 --- /dev/null +++ b/nbproject/.gitignore @@ -0,0 +1 @@ +private diff --git a/nbproject/project.xml b/nbproject/project.xml new file mode 100755 index 000000000..0c128d1f1 --- /dev/null +++ b/nbproject/project.xml @@ -0,0 +1,132 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://www.netbeans.org/ns/project/1"> + <type>org.netbeans.modules.ant.freeform</type> + <configuration> + <general-data xmlns="http://www.netbeans.org/ns/freeform-project/1"> + <name>JOGL</name> + </general-data> + <general-data xmlns="http://www.netbeans.org/ns/freeform-project/2"> + <!-- Do not use Project Properties customizer when editing this file manually. --> + <name>JOGL</name> + <properties> + <property name="ant.script">make/build.xml</property> + </properties> + <folders> + <source-folder> + <label>JOGL.GlueGen</label> + <location>.</location> + <encoding>UTF-8</encoding> + </source-folder> + <source-folder> + <label>jogl gensrc</label> + <type>java</type> + <location>build/jogl/gensrc/classes</location> + <encoding>UTF-8</encoding> + </source-folder> + <source-folder> + <label>nativewindow gensrc</label> + <type>java</type> + <location>build/nativewindow/gensrc/classes</location> + <encoding>UTF-8</encoding> + </source-folder> + <source-folder> + <label>jogl</label> + <type>java</type> + <location>src/jogl/classes</location> + <encoding>UTF-8</encoding> + </source-folder> + <source-folder> + <label>newt</label> + <type>java</type> + <location>src/newt/classes</location> + <encoding>UTF-8</encoding> + </source-folder> + <source-folder> + <label>nativewindow</label> + <type>java</type> + <location>src/nativewindow/classes</location> + <encoding>UTF-8</encoding> + </source-folder> + </folders> + <ide-actions> + <action name="build"> + <script>${ant.script}</script> + <target>all</target> + </action> + <action name="clean"> + <script>${ant.script}</script> + <target>clean</target> + </action> + <action name="rebuild"> + <script>${ant.script}</script> + <target>clean</target> + <target>all</target> + </action> + <action name="compile.single"> + <script>nbproject/ide-file-targets.xml</script> + <target>compile-selected-files-in-classes</target> + <context> + <property>files</property> + <folder>src/classes</folder> + <pattern>\.java$</pattern> + <format>relative-path</format> + <arity> + <separated-files>,</separated-files> + </arity> + </context> + </action> + </ide-actions> + <export> + <type>folder</type> + <location>bin</location> + <script>${ant.script}</script> + <build-target>all</build-target> + </export> + <view> + <items> + <source-folder style="packages"> + <label>jogl gensrc</label> + <location>build/jogl/gensrc/classes</location> + </source-folder> + <source-folder style="packages"> + <label>nativewindow gensrc</label> + <location>build/nativewindow/gensrc/classes</location> + </source-folder> + <source-folder style="packages"> + <label>jogl</label> + <location>src/jogl/classes</location> + </source-folder> + <source-folder style="packages"> + <label>newt</label> + <location>src/newt/classes</location> + </source-folder> + <source-folder style="packages"> + <label>nativewindow</label> + <location>src/nativewindow/classes</location> + </source-folder> + <source-file> + <location>${ant.script}</location> + </source-file> + </items> + <context-menu> + <ide-action name="build"/> + <ide-action name="rebuild"/> + <ide-action name="clean"/> + </context-menu> + </view> + <subprojects/> + </general-data> + <java-data xmlns="http://www.netbeans.org/ns/freeform-project-java/1"> + <compilation-unit> + <package-root>src/newt/classes</package-root> + <package-root>src/jogl/classes</package-root> + <package-root>build/jogl/gensrc/classes</package-root> + <package-root>src/nativewindow/classes</package-root> + <package-root>build/nativewindow/gensrc/classes</package-root> + <classpath mode="compile">../gluegen/build/gluegen.jar</classpath> + <built-to>bin</built-to> + <source-level>1.4</source-level> + </compilation-unit> + </java-data> + </configuration> +</project> |