sample_html5.xml 885 B

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