build.bcgtht.INSTALL.xml 634 B

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