aboutsummaryrefslogtreecommitdiffstats
path: root/make/jogamp-env.xml
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2013-03-28 20:06:30 +0100
committerSven Gothel <[email protected]>2013-03-28 20:06:30 +0100
commita3f2ef50ad33c58a240a17fcf03e415d772207c3 (patch)
tree82f14cf60ffac5ef81845eccb10686647b804a46 /make/jogamp-env.xml
parent0b3c2e5944a27e5eebc6fb82270aae3c91cebc1a (diff)
Bug 588: Adding jogamp.version property, i.e. 2.0.2-rc-<TIMESTAMP> used for Manifest ; Common jogamp_int_version for Android.
Until 2.0.2 gets released, the version string is 2.0.2-rc-<TIMESTAMP> and used in the Manifest for IMPLEMENTATION_VERSION. The previous build version name of IMPLEMENTATION_VERSION goes into the new tag IMPLEMENTATION_BUILD. Further more, we use a common jogamp_int_version for Android, to make life more easy.
Diffstat (limited to 'make/jogamp-env.xml')
-rwxr-xr-xmake/jogamp-env.xml12
1 files changed, 11 insertions, 1 deletions
diff --git a/make/jogamp-env.xml b/make/jogamp-env.xml
index 77421f5..e657e03 100755
--- a/make/jogamp-env.xml
+++ b/make/jogamp-env.xml
@@ -64,11 +64,21 @@
<target name="jogamp.env.init" depends="jogamp.env.validation">
<property environment="env" />
+ <tstamp>
+ <format property="version.timestamp" pattern="yyyyMMddHHmm"/>
+ </tstamp>
+
+ <property name="jogamp.version" value="2.0.2-rc-${version.timestamp}" />
+ <echo message="jogamp.version ${jogamp.version}"/>
+ <!-- This is the Android version: xxyyzzz, xx=API yy screen-from-to zzz app-version-->
+ <property name="jogamp_int_version" value="0914012"/>
+ <echo message="jogamp_int_version ${jogamp_int_version}"/>
+
<!-- only set 'junit.is.disabled' if set in environment as 'true' to disable JUNIT tests -->
<condition property="junit.is.disabled" value="${env.JUNIT_DISABLED}">
<istrue value="${env.JUNIT_DISABLED}"/>
</condition>
- <echo message="junit.is.disabled ${junit.is.disabled}"/>
+ <echo message="junit.is.disabled ${junit.is.disabled}"/>
<condition property="junit.run.arg0" value="${env.JUNIT_RUN_ARG0}">
<not>