blob: 032979a31fc3102322c8b5e07d1a1b4b528d6779 [file] [log] [blame]
david_williams2e87efa2008-09-01 02:56:08 +00001<?xml version="1.0" encoding="UTF-8"?>
2<project
3 name="xsl-conversion"
4 default="main"
5 basedir=".">
6
7 <target
8 name="main"
9 description="example.bin.xml to produce example.html">
10 <xslt
11 destdir="${resultDir}/compilelogs"
12 scanincludeddirectories="true"
13 style="compilerXMLOutputToHTML.xsl"
14 force="true" >
15 <fileset dir="${resultDir}/compilelogs" includes="**/*.bin.xml" />
16 <mapper type="glob" from="*.xml" to="*.html"/>
17 </xslt>
18 </target>
19</project>