build.tidy.INSTALL.xml 754 B

1234567891011121314151617
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project basedir="../../." default="INSTALL" name="tidy.INSTALL">
  3. <include file="build.tidy.PRODUCT.xml" />
  4. <!--<property location="${tidy.install}/install_example.file" name="tidy.INSTALL.install_example" />-->
  5. <condition property="tidy.INSTALL.install_example.ifdef" taskname="INSTALL.install_example">
  6. <not>
  7. <available file="${tidy}" />
  8. </not>
  9. </condition>
  10. <target depends="INSTALL.install_example" name="INSTALL" />
  11. <target if="tidy.INSTALL.install_example.ifdef" name="INSTALL.install_example">
  12. <!--<copy file="${tidy.INSTALL.install_example}" tofile="${tidy.install_example}" />-->
  13. <exec executable="port">
  14. <arg line="install tidy"/>
  15. </exec>
  16. </target>
  17. </project>