mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[task/phpdoc] Added a phpdoc task to the build process
PHPBB3-9943
This commit is contained in:
parent
41184e5d76
commit
03c52e79b9
1 changed files with 7 additions and 1 deletions
|
@ -12,7 +12,7 @@
|
||||||
|
|
||||||
<!-- These are the main targets which you will probably want to use -->
|
<!-- These are the main targets which you will probably want to use -->
|
||||||
<target name="package" depends="clean,prepare,create-package" />
|
<target name="package" depends="clean,prepare,create-package" />
|
||||||
<target name="all" depends="clean,prepare,test,create-package" />
|
<target name="all" depends="clean,prepare,test,docs,create-package" />
|
||||||
|
|
||||||
<target name="prepare">
|
<target name="prepare">
|
||||||
<mkdir dir="build/logs" />
|
<mkdir dir="build/logs" />
|
||||||
|
@ -64,6 +64,12 @@
|
||||||
-->
|
-->
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
<target name="docs">
|
||||||
|
<exec dir="build"
|
||||||
|
command="phpdoc -c phpdoc-phpbb.ini"
|
||||||
|
passthru="true" />
|
||||||
|
</target>
|
||||||
|
|
||||||
<target name="old-version-diffs">
|
<target name="old-version-diffs">
|
||||||
<foreach list="${oldversions}" param="version" target="old-version-diff" />
|
<foreach list="${oldversions}" param="version" target="old-version-diff" />
|
||||||
</target>
|
</target>
|
||||||
|
|
Loading…
Add table
Reference in a new issue