aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs154/pr186673/ant.xml
blob: 8cfc30728b0c18f2229cd258064c7a32eb0a9ab6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<project name="ltw with funny libraries" default="default" basedir=".">
    <target name="default" >
      <echo> This script builds the AspectJ examples.  </echo>
      <taskdef resource="org/aspectj/tools/ant/taskdefs/aspectjTaskdefs.properties">
          <classpath> 
            <pathelement path="${aj.root}/lib/aspectj/aspectjtools.jar"/>
          </classpath>
      </taskdef>
       <iajc destdir="${classes.dir}" argfiles="${list}" 
       		fork="true"
       		forkclasspath="${aspectjtools.jar}"
          classpath="${aspectjrt.jar}"/>

       <antcall target="Ajx-run" >
         <param name="class" value="${class}"/>
       </antcall>
    </target>
</project>