aboutsummaryrefslogtreecommitdiffstats
path: root/make/build-nativewindow.xml
diff options
context:
space:
mode:
authorKenneth Russel <[email protected]>2009-06-17 03:42:28 +0000
committerKenneth Russel <[email protected]>2009-06-17 03:42:28 +0000
commit1ce689ce9383ac55c961f82903d60d1cc7b89246 (patch)
tree0faa128c7128ad3f1e9034e8ae3e48da909d8a25 /make/build-nativewindow.xml
parentdf341ba65d01a9562b45c77768efa37cc4733084 (diff)
Steps toward revamping the dist build. Changed individual builds to
produce the Java Web Start native library jar file, [project]-natives-[os.and-arch].jar, and the top-level build to produce the developer binary archive, jogl-[version]-[os.and.arch].zip, as well as the source archive, jogl-[version]-src.zip. (This was only possible thanks to Sven, who made all of the platforms' Java-level binaries identical.) More work coming to simplify the dist target and redo the associated nightly build scripts. Minor documentation updates; more needed. git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@1970 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'make/build-nativewindow.xml')
-rw-r--r--make/build-nativewindow.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/make/build-nativewindow.xml b/make/build-nativewindow.xml
index d74ed7e03..f64a62694 100644
--- a/make/build-nativewindow.xml
+++ b/make/build-nativewindow.xml
@@ -775,6 +775,12 @@
<target name="c.build.nativewindow" depends="c.configure,c.build.nativewindow.windowlib,c.build.nativewindow.awt">
<antcall target="c.fixup.jawt.version.macosx" inheritrefs="true" />
<antcall target="c.manifest" inheritRefs="true" />
+ <!-- Create the Java Web Start jar file for the built native code -->
+ <jar destfile="${build}/nativewindow-natives-${os.and.arch}.jar">
+ <fileset dir="${obj}">
+ <include name="*.${native.library.suffix}" />
+ </fileset>
+ </jar>
</target>
<!-- ================================================================== -->