<?xml version="1.0" encoding="UTF-8" ?>
<!-- (c) Copyright BMC 2006 All Rights Reserved. -->

<!-- 
  | basedir can be specified to other places base on your need.
  |
  | Note: input, output, and temp directories will base on the basedir if 
  | they are relative paths.
  * -->

<project name="bmcoutput_htmlhelp" default="bmcoutput2htmlhelp" basedir=".">

  <!-- dita.dir should point to the toolkit's root directory -->
  <property name="dita.dir" value="C:${file.separator}DITA-OT"/>
    
  <!-- if file is a relative file name, the file name will be resolved 
       relative to the importing file -->
  <import file="${dita.dir}${file.separator}integrator.xml"/>

  <target name="bmcoutput2htmlhelp" depends="integrate">
    <ant antfile="${dita.dir}${file.separator}conductor.xml" target="init">
      <!-- please refer to the toolkit's document for supported parameters, and 
           specify them base on your needs -->
      <property name="args.input"
        value="${dita.dir}${file.separator}dita_in${file.separator}working${file.separator}processfile.ditamap"/>
      
      <property name="args.copycss"
       value="yes"/>
      <property name="args.css"
       value="${dita.dir}${file.separator}css${file.separator}bmc_dita_chm.css"/>
      <property name="args.csspath"
       value="css"/>

      
      <property name="output.dir"
        value="${dita.dir}${file.separator}dita_out${file.separator}htmlhelp"/>
      <property name="transtype" value="htmlhelp"/>
    </ant>
  </target>
</project>
