build.p5ts.INSTALL.xml 778 B

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