1
0
mirror of synced 2024-12-13 14:56:01 +03:00

Fixed the Phing build script to build the API documentation (Thanks meus for supplying the patch)

This commit is contained in:
jhassine 2006-12-29 16:40:00 +00:00
parent 4e22f1fbaf
commit 6239c4b3af

View File

@ -86,9 +86,11 @@
Generates the API documentation using Doxygen and PHPDoc Generates the API documentation using Doxygen and PHPDoc
Doxygen is required in the path. Doxygen is required in the path.
--> -->
<mkdir dir="${build.dest.dir}/docs/API/doxygen" />
<exec command="doxygen" dir="."/> <exec command="doxygen" dir="."/>
<!-- <exec command="make pdf" dir="${build.src.dir}/docs/latex"/> --> <!-- <exec command="make pdf" dir="${build.src.dir}/docs/latex"/> -->
<mkdir dir="${build.dest.dir}/docs/API/phpdoc" />
<phpdoc title="Doctrine Documentation" destdir="${build.dest.dir}/docs/API/phpdoc/html" <phpdoc title="Doctrine Documentation" destdir="${build.dest.dir}/docs/API/phpdoc/html"
sourcepath="${project.base.dir}/lib" output="HTML:Smarty:PHP"/> sourcepath="${project.base.dir}/lib" output="HTML:Smarty:PHP"/>
</target> </target>