| 12345678910111213141516171819 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project basedir="../../." default="INSTALL" name="p5fi.INSTALL">
- <include file="build.p5fi.PRODUCT.xml" />
- <property location="${p5fi.install}/install_example.file" name="p5fi.INSTALL.install_example" />
- <condition property="p5fi.INSTALL.install_example.ifdef" taskname="INSTALL.install_example">
- <not>
- <available file="${p5fi.repository}/install_example.file" />
- </not>
- </condition>
- <target depends="INSTALL.install_example" name="INSTALL" />
- <target if="p5fi.INSTALL.install_example.ifdef" name="INSTALL.install_example">
- <copy file="${p5fi.INSTALL.install_example}" tofile="${p5fi.install_example}" />
- </target>
-
-
-
-
-
- </project>
|