build.xml 1009 B

1234567891011121314151617181920212223242526272829303132333435
  1. <project name="propel-docs" default="phpdoc">
  2. <property name="runtime.dir" value="../runtime" />
  3. <property name="generator.dir" value="../generator" />
  4. <target name="phpdoc">
  5. <phingcall target="phpdoc-runtime"/>
  6. <phingcall target="phpdoc-generator"/>
  7. </target>
  8. <target name="phpdoc-runtime" description="build runtime docs">
  9. <phpdoc title="Propel Runtime" destdir="api/runtime" sourcecode="yes" output="HTML:Smarty:PHP">
  10. <fileset dir="${runtime.dir}/lib">
  11. <include name="**/*.php" />
  12. </fileset>
  13. </phpdoc>
  14. </target>
  15. <target name="phpdoc-generator" description="build generator docs">
  16. <phpdoc title="Propel Generator" destdir="api/generator" sourcecode="yes" output="HTML:Smarty:PHP">
  17. <fileset dir="${generator.dir}/lib">
  18. <include name="**/*.php" />
  19. </fileset>
  20. <!--
  21. <projdocfileset dir="${generator.dir}">
  22. <include name="README" />
  23. <include name="INSTALL" />
  24. <include name="CHANGELOG" />
  25. </projdocfileset>
  26. -->
  27. </phpdoc>
  28. </target>
  29. </project>