build.d2a.INSTALL.xml 768 B

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