root/trunk/docs/build.xml

Revision 1068, 1.0 kB (checked in by ron, 4 months ago)

Merge in changes from 1.3 branch: merge -r 832:1067

  • Property svn:executable set to *
  • Property svn:keywords set to Id Rev Date Author HeadURL Revision
Line 
1 <project name="propel-docs" default="phpdoc" basedir=".">
2
3         <property name="runtime.dir" value="../runtime" />
4         <property name="generator.dir" value="../generator" />
5
6         <target name="phpdoc">
7                 <phingcall target="phpdoc-runtime"/>
8                 <phingcall target="phpdoc-generator"/>
9         </target>
10        
11         <target name="phpdoc-runtime" description="build runtime docs">
12                 <phpdoc title="Propel Runtime" destdir="api/runtime" sourcecode="yes" output="HTML:Smarty:PHP">
13                         <fileset dir="${runtime.dir}/classes">
14                                 <include name="**/*.php" />
15                         </fileset>
16                 </phpdoc>
17         </target>
18
19         <target name="phpdoc-generator" description="build generator docs">
20                 <phpdoc title="Propel Generator" destdir="api/generator" sourcecode="yes" output="HTML:Smarty:PHP">
21                         <fileset dir="${generator.dir}/classes">
22                                 <include name="**/*.php" />
23                         </fileset>
24                         <!--
25                         <projdocfileset dir="${generator.dir}">
26                                 <include name="README" />
27                                 <include name="INSTALL" />
28                                 <include name="CHANGELOG" />
29                         </projdocfileset>
30                         -->
31                 </phpdoc>
32         </target>
33
34 </project>
Note: See TracBrowser for help on using the browser.