diff options
author | Sven Gothel <[email protected]> | 2011-02-23 18:14:53 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-02-23 18:14:53 +0100 |
commit | 1c88fd2534220a5e8eda1b4f0861ca23a9e3ef31 (patch) | |
tree | e69d54266dbcf6dc3aeb7e781249058935749ae5 /make/jogamp-env.xml | |
parent | e3e59d2f83b6685f97d8b380f7a23d617bde65e4 (diff) |
Intro jogamp-env.xml to parse common env properties ; Fix archive.7z: use abs path
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..767adab --- /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.archiveon}"> + <isset property="${env.build.archiveon}"/> + </condition> + + <condition property="build.node.name" value="${env.NODE_NAME}"> + <isset property="${env.NODE_NAME}"/> + </condition> + <property name="build.node.name" value="local"/> + + </target> + +</project> |