File: build.xml

package info (click to toggle)
robocode 1.6.0~beta2-1
  • links: PTS, VCS
  • area: contrib
  • in suites: lenny
  • size: 8,456 kB
  • ctags: 4,987
  • sloc: java: 29,355; xml: 368; sh: 150; makefile: 61
file content (25 lines) | stat: -rw-r--r-- 932 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="UTF-8"?>

<!-- ====================================================================== -->
<!--  Apache Ant build script for building the Robocode Auto-extract        -->
<!-- ====================================================================== -->

<project name="autoextract" default="build" basedir="../build">
  <description>Apache Ant build script for building the Robocode Auto-extract</description>

  <!-- Enable debug information when compiling -->  
  <property name="debug" value="on"/>

  <!-- Import common build file -->
  <import file="../build/build.xml"/>

  <!-- ====================================== -->
  <!-- Target: build                          -->
  <!-- ====================================== -->
  <target
      name="build"
      description="Build the Robocode Auto-extract"
  	  depends="compile.autoextract, extract.jar">
  </target>

</project>