build.p5fi.INSTALL.xml 713 B

12345678910111213141516171819
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project basedir="../../." default="INSTALL" name="p5fi.INSTALL">
  3. <include file="build.p5fi.PRODUCT.xml" />
  4. <property location="${p5fi.install}/install_example.file" name="p5fi.INSTALL.install_example" />
  5. <condition property="p5fi.INSTALL.install_example.ifdef" taskname="INSTALL.install_example">
  6. <not>
  7. <available file="${p5fi.repository}/install_example.file" />
  8. </not>
  9. </condition>
  10. <target depends="INSTALL.install_example" name="INSTALL" />
  11. <target if="p5fi.INSTALL.install_example.ifdef" name="INSTALL.install_example">
  12. <copy file="${p5fi.INSTALL.install_example}" tofile="${p5fi.install_example}" />
  13. </target>
  14. </project>