Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

build.xml 877B

1234567891011121314151617181920212223242526272829303132
  1. <?xml version="1.0"?>
  2. <project name="asm" default="all" basedir=".">
  3. <import file="../build-common.xml"/>
  4. <import file="../bridge/build.xml"/>
  5. <path id="asm.test.src.path">
  6. <fileset dir="${basedir}/../lib">
  7. <include name="junit/*.jar"/>
  8. </fileset>
  9. <path refid="asm.src.path"/>
  10. </path>
  11. <path id="asm.src.path">
  12. <pathelement path="../bridge/bin"/>
  13. </path>
  14. <target name="compile" depends="init,
  15. bridge.compile">
  16. <srccompile project="asm" path="asm.src.path"/>
  17. </target>
  18. <target name="test:compile" depends="compile">
  19. <testcompile project="asm" path="asm.test.src.path"/>
  20. </target>
  21. <target name="test" depends="test:compile">
  22. <testrun project="asm" path="asm.test.src.path" suite="AsmModuleTests"/>
  23. </target>
  24. </project>