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