forked from java-native-access/jna
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a2aa96a
commit 05567e4
Showing
1 changed file
with
79 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
<?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"> | ||
<!-- Do not use Project Properties customizer when editing this file manually. | ||
To prevent the customizer from showing, create nbproject/project.properties file and enter | ||
auxiliary.show.customizer=false | ||
property there. Adding | ||
auxiliary.show.customizer.message=<message> | ||
will show your customized message when someone attempts to open the customizer. --> | ||
<name>JNA</name> | ||
<properties/> | ||
<folders> | ||
<source-folder> | ||
<label>src</label> | ||
<type>java</type> | ||
<location>src</location> | ||
</source-folder> | ||
<source-folder> | ||
<label>test</label> | ||
<type>java</type> | ||
<location>test</location> | ||
</source-folder> | ||
</folders> | ||
<ide-actions> | ||
<action name="build"> | ||
<target>jar</target> | ||
</action> | ||
<action name="clean"> | ||
<target>clean</target> | ||
</action> | ||
<action name="javadoc"> | ||
<target>javadoc</target> | ||
</action> | ||
<action name="test"> | ||
<target>test</target> | ||
</action> | ||
<action name="rebuild"> | ||
<target>clean</target> | ||
<target>jar</target> | ||
</action> | ||
</ide-actions> | ||
<view> | ||
<items> | ||
<source-folder style="packages"> | ||
<label>src</label> | ||
<location>src</location> | ||
</source-folder> | ||
<source-folder style="packages"> | ||
<label>test</label> | ||
<location>test</location> | ||
</source-folder> | ||
<source-file> | ||
<location>build.xml</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> | ||
</general-data> | ||
<java-data xmlns="http://www.netbeans.org/ns/freeform-project-java/2"> | ||
<compilation-unit> | ||
<package-root>src</package-root> | ||
<source-level>1.5</source-level> | ||
</compilation-unit> | ||
<compilation-unit> | ||
<package-root>test</package-root> | ||
<unit-tests/> | ||
<source-level>1.5</source-level> | ||
</compilation-unit> | ||
</java-data> | ||
</configuration> | ||
</project> |