Last change
on this file was
12404,
checked in by Mark Evenson, 15 years ago
|
Debugging ABCL compilation support; upgrade to JUnit-4.8.1.
Netbeans uses compiled directories before source.
Setting the property 'abcl.compile.lisp.skip' will skip the
compilation of the Lisp files which can be useful to debug under
Netbeans when debugging fundamental parts of ABCL.
Started to document useful Ant-based build knobs in
'build.properties.in'.
Added PathnameTest? and StreamTest? to Java unit tests.
Start documenting properties that affect the Ant build in
'build.properties.in'.
|
File size:
522 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 | |
---|
9 | <target name="-pre-compile" if="abcl.compile.lisp.skip"> |
---|
10 | <antcall target="abcl.copy.lisp"/> |
---|
11 | </target> |
---|
12 | |
---|
13 | <target name="-post-compile" unless="abcl.compile.lisp.skip"> |
---|
14 | <antcall target="abcl.compile.lisp" /> |
---|
15 | </target> |
---|
16 | </project> |
---|
17 | |
---|
Note: See
TracBrowser
for help on using the repository browser.