Annotation of embedaddon/php/scripts/dev/generate-phpt/build.xml, revision 1.1

1.1     ! misho       1: <?xml version="1.0"?>
        !             2: 
        !             3: <project name="generate" default="test" basedir=".">
        !             4: 
        !             5:   <property name="build.dir" value="_build" />
        !             6:   
        !             7:   <target name="docs" description="Create API documentation.">
        !             8:     <exec command="doxygen doxygen.conf" />
        !             9:   </target>
        !            10: 
        !            11:   <target name="test" description="Run all unit tests.">
        !            12:     <exec command="phpunit --coverage-html coverage tests" passthru="true" />
        !            13:   </target>
        !            14: 
        !            15: </project>

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>