source: trunk/abcl/netbeans-build.xml @ 11528

Last change on this file since 11528 was 11528, checked in by Mark Evenson, 14 years ago

Enable optional use of JFluid profiler.

File size: 821 bytes
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="antlib:org.apache.tools.ant"
3    name="abcl" default="default" basedir=".">
4
5<!-- XXX need way to autodetect NetBeans as installed, as this will
6     probably fail otherwise.  -->
7  <import file="nbproject/build-impl.xml"/>
8  <import file="nbproject/profiler-build-impl.xml" optional="true"/>
9
10  <target name="-post-compile">
11    <echo>build.classes.dir: ${build.classes.dir}</echo>
12      <copy todir="${build.classes.dir}">
13  <fileset dir="${basedir}/src">
14    <patternset refid="abcl.source.lisp"/>
15  </fileset>
16      </copy>
17
18      <java classpath="${build.classes.dir}"
19      fork="true"
20      classname="org.armedbear.lisp.Main">
21  <arg value="--noinit"/>
22  <arg value="--eval"/>
23  <arg value="(compile-system :zip nil :quit t)"/>
24      </java>
25  </target>
26</project>
27
Note: See TracBrowser for help on using the repository browser.