| 123456789101112131415161718 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project basedir="../../." default="INSTALL" name="p5exslt.INSTALL">
- <include file="build.p5exslt.PRODUCT.xml" />
- <include as="git" file="build.p5exslt.INSTALL.git.xml" optional="yes" />
- <property location="${p5exslt.install}/install_example.file" name="p5exslt.INSTALL.install_example" />
- <condition property="p5exslt.INSTALL.install_example.ifdef" taskname="INSTALL.install_example">
- <not>
- <available file="${p5exslt.repository}/install_example.file" />
- </not>
- </condition>
- <target if="p5exslt.git.url" name="git">
- <antcall target="git.default" />
- </target>
- <target depends="git,INSTALL.install_example" name="INSTALL" />
- <target if="p5exslt.INSTALL.install_example.ifdef" name="INSTALL.install_example">
- <copy file="${p5exslt.INSTALL.install_example}" tofile="${p5exslt.install_example}" />
- </target>
- </project>
|