aboutsummaryrefslogtreecommitdiffstats
path: root/nbproject/ide-file-targets.xml
blob: 064cbe528dafca5a5756e5a43b2f69b688e39f1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?xml version="1.0" encoding="UTF-8"?>
<project basedir=".." name="GlueGen-IDE">
    <!-- edit the following targets according to your needs -->
    <!-- (more info: http://www.netbeans.org/kb/articles/freeform-config.html-->
    <target name="compile-test">
        <mkdir dir="build/test/build/classes"/>
        <javac debug="true" debuglevel="lines,vars,source" destdir="build/test/build/classes" failonerror="false" source="1.5" srcdir="test/junit">
            <classpath path="build/test/build/classes:build/classes:build/test/gensrc/java:lib/antlr-3.2.jar:make/lib/junit.jar:${ant.core.lib}"/>
        </javac>
    </target>
    <target name="compile-selected-files-in-junit">
        <fail unless="files">Must set property 'files'</fail>
        <mkdir dir="build/test/build/classes"/>
        <javac debug="true" debuglevel="lines,vars,source" destdir="build/test/build/classes" includes="${files}" source="1.5" srcdir="test/junit">
            <classpath path="build/test/build/classes:build/classes:build/test/gensrc/java:lib/antlr-3.2.jar:make/lib/junit.jar:${ant.core.lib}"/>
        </javac>
    </target>
    <target depends="compile-test" name="run-selected-file-in-junit">
        <fail unless="run.class">Must set property 'run.class'</fail>
        <java classname="${run.class}" failonerror="true" fork="true">
            <classpath>
                <path path="build/test/build/classes:build/classes:lib/antlr-3.2.jar:make/lib/junit.jar:${ant.core.lib}"/>
            </classpath>
        </java>
    </target>
    <target depends="compile-test" name="test-selected-file-in-junit">
        <fail unless="run.class">Must set property 'run.class'</fail>
        <junit errorproperty="tests.failed" failureproperty="tests.failed" fork="true" forkmode="once" showoutput="true">
            <test name="${run.class}"/>
            <jvmarg value="-Djava.library.path=${basedir}/build/test/build/natives:${basedir}/build/obj"/>
            <classpath>
                <path path="build/test/build/classes:build/test/gensrc/java:build/classes:lib/antlr-3.2.jar:make/lib/junit.jar:${ant.core.lib}"/>
            </classpath>
            <formatter type="brief" usefile="false"/>
        </junit>
    </target>
    <target depends="compile-test" name="debug-selected-file-in-junit">
        <fail unless="run.class">Must set property 'debug.class'</fail>
        <path id="cp">
            <path path="build/test/build/classes:build/test/gensrc/java:build/classes:lib/antlr-3.2.jar:make/lib/junit.jar:${ant.core.lib}"/>
        </path>
        <nbjpdastart addressproperty="jpda.address" name="GlueGen" transport="dt_socket">
            <classpath refid="cp"/>
        </nbjpdastart>
        <junit errorproperty="tests.failed" failureproperty="tests.failed" fork="true" forkmode="once" showoutput="true">
            <test name="${run.class}"/>
            <classpath refid="cp"/>
            <jvmarg value="-Djava.library.path=${basedir}/build/test/build/natives:${basedir}/build/obj"/>
            <jvmarg value="-Xdebug"/>
            <jvmarg value="-Xrunjdwp:transport=dt_socket,address=${jpda.address}"/>
            <formatter type="brief" usefile="false"/>
        </junit>
    </target>
    <!-- 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-java">
        <fail unless="run.class">Must set property 'run.class'</fail>
        <java classname="${run.class}" failonerror="true" fork="true">
            <classpath>
                <pathelement path="build/classes:/lib/antlr-3.2.jar"/>
                <pathelement location="build/classes"/>
            </classpath>
        </java>
    </target>
    <!-- TODO: edit the following target according to your needs -->
    <!-- (more info: http://www.netbeans.org/kb/articles/freeform-config.html#compilesingle) -->
    <target name="compile-selected-files-in-java">
        <fail unless="files">Must set property 'files'</fail>
        <mkdir dir="build/classes"/>
        <javac destdir="build/classes" includes="${files}" source="1.5" srcdir="src/java">
            <classpath path="build/classes:${ant.core.lib}:lib/antlr-3.2.jar"/>
        </javac>
    </target>
</project>