diff options
author | Michael Bien <[email protected]> | 2010-03-22 18:59:03 +0100 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-03-22 18:59:03 +0100 |
commit | 2f08848b6bde6fad24c2c0e9ab170ff41cf0f077 (patch) | |
tree | b025dba99a99ea32aefb1f4c3fa5a80150b615d9 /make/build.xml | |
parent | c6c516c00040825f2f03b88dbc1747775b2708d2 (diff) |
joal now compatible with upstream gluegen.
updated configuration files.
fixed build.xml 'test' target.
Diffstat (limited to 'make/build.xml')
-rwxr-xr-x | make/build.xml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/make/build.xml b/make/build.xml index 3c2a8fd..324d923 100755 --- a/make/build.xml +++ b/make/build.xml @@ -685,7 +685,7 @@ <fileset dir="${javadoc}" /> <fileset dir="${javadoc.dev}" /> </delete> - <ant dir="../unit_tests" target="clean"/> + <ant dir="../test" target="clean"/> </target> <!-- ================================================================== --> @@ -708,9 +708,9 @@ - Build and run tests. --> - <target name="runtests" depends="all"> - <ant dir="../unit_tests" target="compile"/> - <ant dir="../unit_tests" target="runOpenALTest"/> - <ant dir="../unit_tests" target="runSound3DTest"/> + <target name="test" depends="all"> + <ant dir="../test" target="compile"/> + <ant dir="../test" target="runOpenALTest"/> + <ant dir="../test" target="runSound3DTest"/> </target> </project> |