diff options
author | Sven Gothel <[email protected]> | 2011-05-16 03:28:25 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-05-16 03:28:25 +0200 |
commit | 2f89bf30607281bb8dc0a07b185fa403b9b0f093 (patch) | |
tree | 163a5b866d5982a7fb595df2bfdff22c2f11c72e /make/build.xml | |
parent | b58d6d6ccf9c622f2377cf6c0c3487a8897aba6d (diff) |
build: Query git branch/sha1 and use it if not set and tools are available; Add Java source zip file.
Query git branch/sha1 and use it if not set and tools are available.
This shall improve tracking of manual generated binaries/bundles.
Add Java source zip file. Contains all Java source code (incl. generated ones) enhancing
IDE usage, where API doc and source browsing of libs is supported (NB/Eclipse/etc).
Diffstat (limited to 'make/build.xml')
-rw-r--r-- | make/build.xml | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/make/build.xml b/make/build.xml index 6dc856367..ed131b475 100644 --- a/make/build.xml +++ b/make/build.xml @@ -133,7 +133,7 @@ tofile="${archive}/README.txt" overwrite="true"> <filterset> - <filter token="VERSION" value="${jogl.version}"/> + <filter token="VERSION" value="${jogl.version}"/> <filter token="SCM_BRANCH" value="${jogl.build.branch}"/> <filter token="SCM_COMMIT" value="${jogl.build.commit}"/> <filter token="BASEVERSION" value="${jogl_base_version}"/> @@ -155,6 +155,17 @@ <copy todir="${archive}/etc"> <fileset dir="${project.root}/etc" includes="*" /> </copy> + <zip destfile="${archive}/nativewindow-java-src.zip"> + <fileset dir="${src}/nativewindow/classes"/> + <fileset dir="${build}/nativewindow/gensrc/classes"/> + </zip> + <zip destfile="${archive}/jogl-java-src.zip"> + <fileset dir="${src}/jogl/classes"/> + <fileset dir="${build}/jogl/gensrc/classes"/> + </zip> + <zip destfile="${archive}/newt-java-src.zip"> + <fileset dir="${src}/newt/classes"/> + </zip> <archive.7z destfile="${build}/${archive.name}.7z" basedir="${build}" includes="${archive.name}/**" /> |