Home

Usage

Download

Change History

Support

doxygen

Description

Generates documentation for source files, using the document generation utility doxygen.

Dependency

The 'doxygen' binary need to be pre-installed on the system. If it is not in the PATH environment variable of your operating system, please see the attribute 'doxygenPath' as to how to use the same to invoke doxygen.

Parameters

Attribute Description Required
versionCompatible This is the version of doxygen for which the task is compatible. If set and the version of the doxygen installed on the system does not match with this version, the build would break No.
doxygenPath This is the full path to the doxygen executable that is to be used for executing this doxygen task. By default, the task expects the doxygen binary in the path. No.
configFilename If set, then the doxygen task would load the configuration properties from this file. No.

Parameters specified as nested elements

property

doxygen task can have more than one 'property' nested elements as follows.

Attribute Description Required
name The name of the property in the Doxygen configuration file. Yes.
value The value of the property whose name is specified as 'name' attribute in the Doxygen configuration file. Yes.

Defining Doxygen Task

The doxygen task could be defined as follows.

<taskdef name="doxygen" classname="org.doxygen.tools.DoxygenTask"
        	classpath="<path_to_ant_doxygen.jar_file>" />

Examples

1. To generate documentation by default in current directory, basic option.

<doxygen>
	<property name="INPUT" value="${inputdir}" />
</doxygen>

2. To generate html documentation recursively for a given directory and suppress latex documentation.

<doxygen>
	<property name="INPUT" value="${inputdir}" />
	<property name="RECURSIVE" value="yes" />
	<property name="GENERATE_LATEX" value="false" />
	<property name="PROJECT_NAME" value="Ant-Doxygen" />
</doxygen>

3. To launch doxygen that is not installed on the path.

<doxygen doxygenPath="/usr/local/doxygen-1.2.5/doxygen" >
	<property name="INPUT" value="${inputdir}" />
	<property name="PROJECT_NAME" value="Ant-Doxygen" />
</doxygen>

4. To launch doxygen that should be run only with doxygen version 1.2.17.

<doxygen versionCompatible="1.2.17" >
	<property name="INPUT" value="${inputdir}" />
	<property name="PROJECT_NAME" value="Ant-Doxygen" />
</doxygen>

4. To launch doxygen that should be run with doxygen versions 1.2.17 and above.

<doxygen versionCompatible="1.2.17+" >
	<property name="INPUT" value="${inputdir}" />
	<property name="PROJECT_NAME" value="Ant-Doxygen" />
</doxygen>

5. To load the doxygen configuration properties from a given file.

<doxygen configFilename="/home/myhome/doxygen.cfg" />

This project is hosted on SourceForge Logo.