-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.xml
21 lines (20 loc) · 1.14 KB
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<!-- You may freely edit this file. See harness/README in the NetBeans platform -->
<!-- for some information on what you could do (e.g. targets to override). -->
<!-- If you delete this file and reopen the project it will be recreated. -->
<project name="de.nigjo.nb.releaseview" default="netbeans" basedir=".">
<description>Builds, tests, and runs the project de.nigjo.nb.releaseview.</description>
<import file="nbproject/build-impl.xml"/>
<target name="init" depends="platformtest.init,harness.init"/>
<target name="platformtest.init">
<property name="platformtest.active.dir" location="${nbplatform.active.dir}"/>
<property name="platformtest.netbeans.dir" location="${netbeans.home}/.."/>
<condition property="platformtest.iscurrentide">
<equals arg1="${platformtest.active.dir}"
arg2="${platformtest.netbeans.dir}"/>
</condition>
<fail if="platformtest.iscurrentide">
Please definie a NetBeans Platform called "${nbplatform.active}" in your IDE.
or set $${nbplatform.nb81.netbeans.dest.dir} to a proper location.</fail>
</target>
</project>