summaryrefslogtreecommitdiffstats
path: root/make/jogamp-env.xml
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2019-04-08 04:08:26 +0200
committerSven Gothel <[email protected]>2019-04-08 04:08:26 +0200
commitb846476786a776296a5c5ab6cbfb370a4c5497ae (patch)
treea9a10eacd26bae743a5d39d688c1f2bd99555514 /make/jogamp-env.xml
parent0bd5136c2df8407cea7b0dcc7fb1e62432ba18bb (diff)
Complete jogamp-env.xml TARGET_* readout; Use parsed env in cpptasks-base as well
Diffstat (limited to 'make/jogamp-env.xml')
-rwxr-xr-xmake/jogamp-env.xml12
1 files changed, 12 insertions, 0 deletions
diff --git a/make/jogamp-env.xml b/make/jogamp-env.xml
index 95d277e..9e22cbe 100755
--- a/make/jogamp-env.xml
+++ b/make/jogamp-env.xml
@@ -299,8 +299,20 @@
<equals arg1="${env.TARGET_PLATFORM_USRROOT}" arg2="$${env.TARGET_PLATFORM_USRROOT}" casesensitive="true" />
</not>
</condition>
+ <condition property="TARGET_PLATFORM_USRLIBS" value="${env.TARGET_PLATFORM_USRLIBS}">
+ <not>
+ <equals arg1="${env.TARGET_PLATFORM_USRLIBS}" arg2="$${env.TARGET_PLATFORM_USRLIBS}" casesensitive="true" />
+ </not>
+ </condition>
+ <condition property="TARGET_JAVA_LIBS" value="${env.TARGET_JAVA_LIBS}">
+ <not>
+ <equals arg1="${env.TARGET_JAVA_LIBS}" arg2="$${env.TARGET_JAVA_LIBS}" casesensitive="true" />
+ </not>
+ </condition>
<echo message='TARGET_PLATFORM_SYSROOT ${TARGET_PLATFORM_SYSROOT}'/>
<echo message='TARGET_PLATFORM_USRROOT ${TARGET_PLATFORM_USRROOT}'/>
+ <echo message='TARGET_PLATFORM_USRLIBS ${TARGET_PLATFORM_USRLIBS}'/>
+ <echo message='TARGET_JAVA_LIBS ${TARGET_JAVA_LIBS}'/>
</target>
</project>