| 1234567891011121314151617 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project basedir="../../." default="INSTALL" name="tidy.INSTALL">
- <include file="build.tidy.PRODUCT.xml" />
- <!--<property location="${tidy.install}/install_example.file" name="tidy.INSTALL.install_example" />-->
- <condition property="tidy.INSTALL.install_example.ifdef" taskname="INSTALL.install_example">
- <not>
- <available file="${tidy}" />
- </not>
- </condition>
- <target depends="INSTALL.install_example" name="INSTALL" />
- <target if="tidy.INSTALL.install_example.ifdef" name="INSTALL.install_example">
- <!--<copy file="${tidy.INSTALL.install_example}" tofile="${tidy.install_example}" />-->
- <exec executable="port">
- <arg line="install tidy"/>
- </exec>
- </target>
- </project>
|