diff options
author | Sven Gothel <[email protected]> | 2010-03-29 04:24:20 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-03-29 04:24:20 +0200 |
commit | 2138fc787c1e497be7f373aa68b3f751c955008f (patch) | |
tree | d4b1a1dc63602bef8073e70d709faa2821b5dddd /make/build-junit.xml | |
parent | ca2ccb29bd3cd4d9c73ca96ce02402888ac9e9af (diff) |
New Int64Buffer type, which is being used for gluegen 'long *'
Diffstat (limited to 'make/build-junit.xml')
-rw-r--r-- | make/build-junit.xml | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/make/build-junit.xml b/make/build-junit.xml index 86292a2..518d58a 100644 --- a/make/build-junit.xml +++ b/make/build-junit.xml @@ -23,6 +23,8 @@ <!-- Call the external config validator script to make sure the config is ok and consistent --> <ant antfile="validate-properties.xml" inheritall="true"/> + <property name="make" value="." /> + <property name="test.base.dir" value="${gluegen.root}/src/junit" /> <property name="test.junit.rel" value="com/jogamp/gluegen/test/junit" /> <property name="test.junit.dir" value="${test.base.dir}/${test.junit.rel}" /> @@ -74,6 +76,8 @@ <pathelement location="${gluegen-test.jar}" /> </path> + <property name="stub.includes.dir" value="stub_includes" /> <!-- NOTE: this MUST be relative for FileSet --> + <echo message="test.base.dir: ${test.base.dir} "/> <echo message="test.junit.dir: ${test.junit.dir} "/> <echo message="test.dir: ${test.dir} "/> @@ -159,6 +163,7 @@ <compiler extends="@{compiler.cfg.id}" > <sysincludepath path="${java.includes.dir}"/> <sysincludepath path="${java.includes.dir.platform}"/> + <includepath path="${stub.includes.dir}/common"/> <includepath path="${test.junit.dir}"/> <includepath path="${build_t.gen}/native"/> </compiler> @@ -229,7 +234,10 @@ <target name="junit.test1.java.generate"> <echo message=" - - - junit.test1.java.generate" /> - <dirset id="stub.includes.fileset.test" dir="." includes="${test.junit.dir}/*" /> + <dirset id="stub.includes.fileset.test" dir="."> + <include name="${test.junit.dir}/**"/> + <include name="${stub.includes.dir}/**" /> + </dirset> <gluegen src="${test.junit.dir}/test1-gluegen.c" outputRootDir="${build_t.gen}" |