-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig_file.xml
More file actions
70 lines (54 loc) · 2.54 KB
/
config_file.xml
File metadata and controls
70 lines (54 loc) · 2.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!--============================================================================-->
<!-- CONFIG_FILE.XML: -->
<!-- Ant-Doxygen example build.xml file. -->
<!-- -->
<!-- TARGETS: -->
<!-- ant documentation - Invoke Doxygen via Ant. -->
<!-- -->
<!-- URL: -->
<!-- http://ant-doxygen.sourceforge.net - Project Home -->
<!-- http://sourceforge.net/projects/ant-doxygen - SourceForge Project -->
<!-- -->
<!--============================================================================-->
<!-- $Header: /cvsroot/ant-doxygen/ant_task/build.xml,v 1.10.4.1 2004/01/26 01:23:52 jfrotz Exp $ -->
<project name="ant_doxygen" xmlns:doxygen="antlib:org.doxygen.tools" default="documentation" basedir=".." >
<!--===========================================================================-->
<!-- PROPERTY INITIALIZATION: -->
<!-- The following properties are used in this file. -->
<!-- build.compiler - We prefer "jikes". You might use "javac" -->
<!-- -->
<!-- NOTE: -->
<!-- You may wish to use your ${user.home}/ant.properties file to preset -->
<!-- build.compiler and possibly the checkstyle and/or junit jar files -->
<!-- -->
<target name="properties">
<property file="${user.home}/ant.properties" />
<property name="version" value="1.3" />
<property name="build.compiler" value="javac" />
</target>
<!--===========================================================================-->
<!-- CLASSPATH REFERENCES: -->
<!-- project.class.path - Used to compile this project. -->
<!-- -->
<path id="project.class.path">
<pathelement path="src"/>
<pathelement path="classes"/>
<pathelement path="lib/ant_doxygen.jar"/>
</path>
<!--===========================================================================-->
<!-- DOCUMENTATION: -->
<!-- Demonstrate the Ant-Doxygen config file form. This form uses a base -->
<!-- configuration and any elements are appended to this list of parameters. -->
<!-- -->
<target name="documentation"
depends="properties"
description="Example target showing base configuration file form.">
<doxygen:doxygen configFilename="conf/doxygen.cfg">
<!--==============================================-->
<!-- Property tag names use Doxygen configuration -->
<!-- file parameter names. -->
<!-- -->
<property name="PROJECT_NAME" value="Examples"/>
</doxygen:doxygen>
</target>
</project>