You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build.xml 923B

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project name="DMDirc" default="default" basedir=".">
  3. <description>Builds, tests, and runs the project DMDirc.</description>
  4. <available file="/bin/bash" property="has.bash"/>
  5. <import file="nbproject/build-impl.xml"/>
  6. <import file="build-installer.xml"/>
  7. <import file="build-plugins.xml"/>
  8. <import file="build-svn.xml"/>
  9. <import file="build-tests.xml"/>
  10. <target name="installer" depends="-installer-nobuild, -installer-build"/>
  11. <target name="-post-compile" depends="unsvn, build-plugins"/>
  12. <target name="-pre-compile" depends="addsvn"/>
  13. <target name="test-html" depends="with.clover,compile-test,test,clover.html"/>
  14. <target name="test-xml" depends="with.clover,compile-test,test,clover.xml"/>
  15. <target name="test-both" depends="test-html,test-xml"/>
  16. <target name="-post-test-run" depends="-do-test-reports"/>
  17. </project>