code-srv-test/dita-ot-3.6/docsrc/samples/ant_sample/sample_htmlhelp.xml
2021-03-23 22:38:58 +00:00

19 lines
864 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<!-- This file is part of the DITA Open Toolkit project. See the accompanying LICENSE file for applicable license. -->
<project name="sample_htmlhelp" default="samples.htmlhelp" basedir=".">
<property name="dita.dir" location="${basedir}/../../.."/>
<target name="samples.htmlhelp" description="build the samples for HTMLHelp" depends="clean.samples.htmlhelp">
<ant antfile="${dita.dir}/build.xml">
<property name="args.input" location="${dita.dir}/docsrc/samples/hierarchy.ditamap"/>
<property name="output.dir" location="${dita.dir}/out/samples/htmlhelp"/>
<property name="transtype" value="htmlhelp"/>
</ant>
</target>
<target name="clean.samples.htmlhelp" description="remove the sample HTMLHelp output">
<delete dir="${dita.dir}/out/samples/htmlhelp"/>
</target>
</project>