sample_eclipsehelp.xml 889 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 file for applicable license. -->
  3. <project name="sample_eclipsehelp" default="samples.eclipse" basedir=".">
  4. <property name="dita.dir" location="${basedir}/../../.."/>
  5. <target name="samples.eclipse" description="build the samples for Eclipse" depends="clean.samples.eclipse">
  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/org.dita.sample.doc"/>
  9. <property name="transtype" value="eclipsehelp"/>
  10. </ant>
  11. </target>
  12. <target name="clean.samples.eclipse" description="remove the sample Eclipse output">
  13. <delete dir="${dita.dir}/out/samples/org.dita.sample.doc"/>
  14. </target>
  15. </project>