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 75 76 77 78 79
|
<?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-->
<property name="libpath" value="${basedir}/build/lib"/>
<target name="init">
<path id="cp">
<pathelement path="${jdk.home}/lib/tools.jar:${ant.core.lib}:${ant.home}/lib/ant-junit.jar"/>
<pathelement location="../gluegen/make/lib/junit.jar"/>
<pathelement location="../gluegen/build/gluegen-rt.jar"/>
<pathelement location="build/test/build/classes"/>
<pathelement location="build/jogl/classes"/>
<pathelement location="build/jogl/gensrc/classes"/>
<pathelement location="build/newt/classes"/>
<pathelement location="build/nativewindow/classes"/>
<pathelement location="build/nativewindow/gensrc/classes"/>
</path>
</target>
<target name="compile-test" depends="init">
<mkdir dir="build/test/build/classes"/>
<javac debug="true" debuglevel="lines,vars,source" destdir="build/test/build/classes" failonerror="false" source="1.5" srcdir="src/test" includeantruntime="false">
<classpath refid="cp"/>
</javac>
</target>
<target name="compile-selected-files-in-junit" depends="init">
<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="src/test" includeantruntime="false">
<classpath refid="cp"/>
</javac>
</target>
<target name="run-selected-file-in-junit" depends="compile-test">
<fail unless="run.class">Must set property 'run.class'</fail>
<java classname="${run.class}" failonerror="true" fork="true">
<jvmarg value="-Djava.library.path=${libpath}"/>
<classpath refid="cp"/>
</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=${libpath}"/>
<classpath refid="cp"/>
<formatter type="brief" usefile="false"/>
</junit>
</target>
<target name="debug-selected-file-in-junit" depends="compile-test,init">
<fail unless="debug.class">Must set property 'debug.class'</fail>
<nbjpdastart addressproperty="jpda.address" name="JOGL" transport="dt_socket">
<classpath refid="cp"/>
</nbjpdastart>
<junit errorproperty="tests.failed" failureproperty="tests.failed" fork="true" forkmode="once" showoutput="true">
<test name="${debug.class}"/>
<classpath refid="cp"/>
<jvmarg value="-Djava.library.path=${libpath}"/>
<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/>
</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:${jdk.home}/lib/tools.jar:${ant.core.lib}:lib/antlr-3.2.jar"/>
</javac>
</target>
</project>
|