-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprocess_doxygen.xml
More file actions
35 lines (33 loc) · 864 Bytes
/
process_doxygen.xml
File metadata and controls
35 lines (33 loc) · 864 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<!--ant-->
<!--
This file is part of the DITA-OT Doxygen Plug-in project.
See the accompanying LICENSE file for applicable licenses.
-->
<project name="fox.jason.passthrough.doxygen" default="doxygen.process">
<!--
Iterate across all files marked format="doxygen" and process them
-->
<target name="doxygen.process">
<tempfile
deleteonexit="true"
destdir="${java.io.tmpdir}"
property="doxygen.temp.file"
suffix=".xml"
/>
<xslt
taskname="doxygen"
in="${passthrough.input}"
out="${doxygen.temp.file}"
force="true"
style="${basedir}/xsl/preprocess.xsl"
/>
<xslt
taskname="doxygen"
in="${doxygen.temp.file}"
out="${passthrough.output}"
force="true"
style="${basedir}/xsl/doxygen2dita.xsl"
/>
</target>
</project>