sample-project.xml 1.1 KB

1234567891011121314151617181920212223242526272829
  1. <docproject>
  2. <packages>
  3. <!-- Multiple packages can be entered.
  4. If only one is specified, it is selected.
  5. "name" is a mandatory attribute
  6. a "units" tag is required, and a "descriptions" tag as well
  7. -->
  8. <package name="fpdocsample" output="doc" contentfile="fpdocsample.cnt">
  9. <!-- All input files, one "unit" tag per unit -->
  10. <units>
  11. <!-- "file" is a mandatory attribute, "options" is not mandatory -->
  12. <unit file="../simple/testunit.pp" options="-S2"/>
  13. </units>
  14. <descriptions>
  15. <!-- Description files here. One "description" tag per file.
  16. "file" is the only mandatory attribute -->
  17. <description file="../simple/testunit.xml"/>
  18. </descriptions>
  19. </package>
  20. </packages>
  21. <options>
  22. <!-- All command-line options can be specified here with the same name
  23. and value as on the actual command-line. Boolean options must have
  24. a value of 'true', '1' or 'yes' -->
  25. <option name="format" value="html"/>
  26. <option name="hide-protected" value="true"/>
  27. <option name="footer-date" value="yyyy-mm-dd"/>
  28. </options>
  29. </docproject>