5
5
Helioviewer Back-end Apache Ant build.xml
13
8
<!-- TODO: target = all -->
16
18
<target name="phpunit_prereqs" unless="phpunit.found">
17
19
<echo>Unable to find PHPUnit.</echo>
18
20
<echo>To install, follow instructions at:</echo>
19
21
<echo> http://www.phpunit.de/manual/3.4/en/installation.html</echo>
23
24
<target name="test" depends="phpunit_prereqs" if="phpunit.found">