diff options
author | Michael Bien <[email protected]> | 2011-02-25 23:53:23 +0100 |
---|---|---|
committer | Michael Bien <[email protected]> | 2011-02-25 23:53:23 +0100 |
commit | a1c22f48aef28165b0112e3bab223fe5ea2fa4fd (patch) | |
tree | 8ca5808874a5249ac0b93cdcdd1f01d806b471a8 /make/jogamp-env.xml | |
parent | 021bac51052da270b6cde326637c4c4251ba38aa (diff) | |
parent | 5cf4eeb334ac5390b0c681da0fb17db56a143395 (diff) |
Merge branch 'master' of github.com:sgothel/gluegen
Diffstat (limited to 'make/jogamp-env.xml')
-rwxr-xr-x | make/jogamp-env.xml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/make/jogamp-env.xml b/make/jogamp-env.xml new file mode 100755 index 0000000..579714f --- /dev/null +++ b/make/jogamp-env.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project name="jogamp-env" basedir="."> + + <target name="jogamp.env.init"> + <property environment="env" /> + + <!-- only set 'build.archiveon' if set in environment to trigger archive creation --> + <condition property="build.archiveon" value="${env.BUILD_ARCHIVE}"> + <istrue value="${env.BUILD_ARCHIVE}"/> + <!--isset property="${env.BUILD_ARCHIVE}"/--> + </condition> + + <condition property="build.node.name" value="${env.NODE_NAME}" else="local"> + <length string="${env.NODE_NAME}" when="greater" length="0" /> + </condition> + + </target> + +</project> |