diff options
author | Michael Bien <[email protected]> | 2010-07-24 21:02:11 +0200 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-07-24 21:02:11 +0200 |
commit | e73f5fe634d078f02a70e30be0fe429121d8b63b (patch) | |
tree | 9a2e941089387c9d1f9526de7000e39a0e75c943 /make/build.xml | |
parent | 5c67883ba47c8510e5826e38fb09333245e10335 (diff) |
added tag.build ant target.
Diffstat (limited to 'make/build.xml')
-rw-r--r-- | make/build.xml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/make/build.xml b/make/build.xml index 4b6c2cabe..23d12d5de 100644 --- a/make/build.xml +++ b/make/build.xml @@ -150,12 +150,17 @@ includes="jogl/${rootrel.build}/jogl/gensrc/classes/javax/media/opengl/**" /> </target> + <target name="tag.build"> + <copy file="${gluegen.root}/build/artifact.properties" todir="${build}" overwrite="true"/> + <echo file="${build}/artifact.properties" message='jogl.build.number="${build.number}"${line.separator}' append="true"/> + </target> + <!-- ================================================================== --> <!-- - Main build target. --> - <target name="all" description="Build nativewindow, jogl and newt projects, incl. all junit tests " depends="init,build.nativewindow,build.jogl,build.newt,junit.compile,one-dir,developer-zip-archive,source-archive" /> + <target name="all" description="Build nativewindow, jogl and newt projects, incl. all junit tests " depends="init,build.nativewindow,build.jogl,build.newt,junit.compile,one-dir,tag.build,developer-zip-archive,source-archive" /> <target name="junit.compile"> <ant antfile="build-junit.xml" target="junit.compile" inheritRefs="true" inheritAll="true"/> |