diff options
author | Sven Gothel <[email protected]> | 2009-10-04 00:19:32 -0700 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2009-10-04 00:19:32 -0700 |
commit | 4b9a72c24bb97ed81c79c3931d4ffb5fa53d9978 (patch) | |
tree | 0237b562f04fbe56fe0245dbbefecfc6c608caee /make | |
parent | 30c1fe267c0cf47a25db06ac93c6065881af2a20 (diff) |
Add ReadBuffer Demos/ModuleTests; Incl. SurfaceUpdated Listener, ReadPixel to file, texture - direct or via attaching the drawable to another context as it's readbuffer
Diffstat (limited to 'make')
-rw-r--r-- | make/build.xml | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/make/build.xml b/make/build.xml index a59134e..dd14d05 100644 --- a/make/build.xml +++ b/make/build.xml @@ -197,12 +197,16 @@ <include name="demos/data/**" /> </fileset> </jar> - <!-- Build a source archive as well --> + <!-- Build a source archive as well --> + <antcall target="all-src-zip" inheritrefs="true" /> + </target> + + <target name="all-src-zip" unless="skipSourceZIP"> <delete file="${jogl.demos.src.zip}" /> <zip destfile="${jogl.demos.src.zip}" - basedir="../.." - includes="jogl-demos/doc/**,jogl-demos/make/**,jogl-demos/src/**,jogl-demos/lib/**" - excludes="**/*.class,**/*~" + basedir="../.." + includes="jogl-demos/doc/**,jogl-demos/make/**,jogl-demos/src/**,jogl-demos/lib/**" + excludes="**/*.class,**/*~" /> </target> |