diff options
author | Michael Bien <[email protected]> | 2010-03-22 18:56:28 +0100 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-03-22 18:56:28 +0100 |
commit | 8fb2e0ead08542cd69ee211a2a521e02e160e425 (patch) | |
tree | 9c33930fc858a98ee55ee26a32361c0fd8cee115 /nbproject | |
parent | 6cd55a3d685e35fcb8afc7ad3a09ec85388d0afc (diff) |
added NetBeans project files, cleaned up project structure.
Diffstat (limited to 'nbproject')
-rw-r--r-- | nbproject/project.xml | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/nbproject/project.xml b/nbproject/project.xml new file mode 100644 index 0000000..651bd11 --- /dev/null +++ b/nbproject/project.xml @@ -0,0 +1,94 @@ +<?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>JOAL</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>JOAL</name> + <properties> + <property name="ant.script">/home/mbien/NetBeansProjects/JOGAMP/joal/make/build.xml</property> + </properties> + <folders> + <source-folder> + <label>JOGL</label> + <location>.</location> + <encoding>UTF-8</encoding> + </source-folder> + <source-folder> + <label>src/java</label> + <type>java</type> + <location>src/java</location> + <encoding>UTF-8</encoding> + </source-folder> + <source-folder> + <label>test/src</label> + <type>java</type> + <location>test/src</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="javadoc"> + <script>${ant.script}</script> + <target>javadoc</target> + </action> + <action name="rebuild"> + <script>${ant.script}</script> + <target>clean</target> + <target>all</target> + </action> + <action name="test"> + <script>${ant.script}</script> + <target>test</target> + </action> + </ide-actions> + <view> + <items> + <source-folder style="packages"> + <label>src/java</label> + <location>src/java</location> + </source-folder> + <source-folder style="packages"> + <label>test/src</label> + <location>test/src</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"/> + <ide-action name="javadoc"/> + <ide-action name="test"/> + </context-menu> + </view> + <subprojects/> + </general-data> + <java-data xmlns="http://www.netbeans.org/ns/freeform-project-java/2"> + <compilation-unit> + <package-root>src/java</package-root> + <classpath mode="compile">../gluegen/build/gluegen-rt.jar:build/classes</classpath> + <source-level>1.5</source-level> + </compilation-unit> + <compilation-unit> + <package-root>test/src</package-root> + <unit-tests/> + <classpath mode="compile">../gluegen/build/gluegen-rt.jar:build/classes:test/lib/junit.jar</classpath> + <source-level>1.5</source-level> + </compilation-unit> + </java-data> + </configuration> +</project> |