sample_wordrtf.xml 845 B

123456789101112131415161718192021
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!--This file is part of the DITA Open Toolkit project. See the accompanying LICENSE.md file for applicable licenses.-->
  3. <project name="sample_wordrtf" default="samples.wordrtf" basedir=".">
  4. <property name="dita.dir" location="${basedir}/../../.."/>
  5. <target name="samples.wordrtf" description="transform the samples to RTF" depends="clean.samples.wordrtf">
  6. <ant antfile="${dita.dir}/build.xml">
  7. <property name="args.input" location="${dita.dir}/samples/hierarchy.ditamap"/>
  8. <property name="output.dir" location="${dita.dir}/out/samples/wordrtf"/>
  9. <property name="transtype" value="wordrtf"/>
  10. </ant>
  11. </target>
  12. <target name="clean.samples.wordrtf" description="remove the sample RTF output">
  13. <delete dir="${dita.dir}/out/samples/wordrtf"/>
  14. </target>
  15. </project>