sample_odt.xml 813 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_odt" default="samples.odt" basedir=".">
  4. <property name="dita.dir" location="${basedir}/../../.."/>
  5. <target name="samples.odt" description="transform the samples to ODT" depends="clean.samples.odt">
  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/odt"/>
  9. <property name="transtype" value="odt"/>
  10. </ant>
  11. </target>
  12. <target name="clean.samples.odt" description="remove the sample ODT output">
  13. <delete dir="${dita.dir}/out/samples/odt"/>
  14. </target>
  15. </project>