Skip to content

Commit 0796c6f

Browse files
committed
Updated build.xml (for NetBeans compatibility).
- Added `dir` property to `runUnitTest` target. - Added `runLayerManager` target to run the LayerManager example for functional testing.
1 parent 452d14c commit 0796c6f

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

build.xml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,7 @@
330330
<delete dir="${worldwind.test.results.dir}"/>
331331
<mkdir dir="${worldwind.test.results.dir}"/>
332332
<junit failureproperty="unitTest.failure"
333+
dir="${basedir}"
333334
fork="on"
334335
forkmode="once"
335336
maxmemory="1024m">
@@ -545,5 +546,12 @@
545546
<arg value="all"/>
546547
</exec>
547548
</target>
548-
549+
550+
<target name="runLayerManager" depends="build" description="Runs the LayerManager example app.">
551+
<java fork="true"
552+
classname="gov.nasa.worldwindx.examples.layermanager.LayerManagerApp"
553+
classpath="gdal.jar;gluegen-rt-natives-linux-amd64.jar;gluegen-rt-natives-linux-i586.jar;gluegen-rt-natives-macosx-universal.jar;gluegen-rt-natives-windows-amd64.jar;gluegen-rt-natives-windows-i586.jar;gluegen-rt.jar;jogl-all-natives-linux-amd64.jar;jogl-all-natives-linux-i586.jar;jogl-all-natives-macosx-universal.jar;jogl-all-natives-windows-amd64.jar;jogl-all-natives-windows-i586.jar;jogl-all.jar;junit-4.5.jar;vpf-symbols.jar;worldwind.jar;worldwindx.jar"
554+
/>
555+
</target>
556+
549557
</project>

0 commit comments

Comments
 (0)