build.xml 1.0 KB

1234567891011121314151617181920212223242526272829
  1. <project name="CORAM3P" default="compile">
  2. <target name="init" >
  3. <mkdir dir="bin" />
  4. </target>
  5. <target name="compile" depends="init" >
  6. <javac srcdir="src:test:ObliVMGC" destdir="bin" debug="on" debuglevel="lines,vars,source" source="1.8" includeantruntime="false">
  7. <classpath>
  8. <pathelement location="lib/argparse4j-0.1.0.jar"/>
  9. <pathelement location="lib/bcprov-jdk15on-151.jar"/>
  10. <pathelement location="lib/commons-cli-1.2.jar"/>
  11. <pathelement location="lib/commons-io-2.4.jar"/>
  12. <pathelement location="lib/commons-lang3-3.3.2.jar"/>
  13. <pathelement location="lib/jargs.jar"/>
  14. <pathelement location="lib/junit-4.10.jar"/>
  15. <pathelement location="lib/oblivm-flexsc-0.2.jar"/>
  16. <pathelement location="lib/org.hamcrest.core_1.3.0.v201303031735.jar"/>
  17. <pathelement location="lib/snakeyaml-1.11.jar"/>
  18. <pathelement path="bin"/>
  19. </classpath>
  20. </javac>
  21. </target>
  22. <target name="clean" depends="init" >
  23. <delete dir="bin" />
  24. </target>
  25. </project>