Ignore:
Timestamp:
01/26/10 11:30:57 (13 years ago)
Author:
Mark Evenson
Message:

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:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/netbeans-build.xml

    r12354 r12404  
    77  <import file="nbproject/build-impl.xml"/>
    88
    9   <target name="-post-compile">
    10     <antcall target="abcl.compile.lisp"/>
     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" />
    1115  </target>
    1216</project>
Note: See TracChangeset for help on using the changeset viewer.