aboutsummaryrefslogtreecommitdiffstats
path: root/make/build.xml
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2014-06-19 23:58:38 +0200
committerSven Gothel <[email protected]>2014-06-19 23:58:38 +0200
commit8a4dacf38c9d78bc0aafae91cbd256148835ee9b (patch)
treeabc3f1cc215f106b11cf8f3f6dd217dbe57bd34d /make/build.xml
parent40d7d0d18ed11b8dbb0f16137f82eef828b822a4 (diff)
Bug 1021: Add OculusSDK binding / Basic OVR support (Refine build exclusion)
common: - property 'oculusvr.sdk.available' is only set if sub-module 'oculusvr-sdk' is available - if 'oculusvr.sdk.available' is not set build.xml will not issue build-oculusvr.xml's 'all' target build-oculusvr.xml: - propery 'oculusvr.build.enabled' is only enabled if 'oculusvr.sdk.available' is set and targer 'all' will only pass if set.
Diffstat (limited to 'make/build.xml')
-rw-r--r--make/build.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/make/build.xml b/make/build.xml
index b356e2a1f..2e5a664c8 100644
--- a/make/build.xml
+++ b/make/build.xml
@@ -79,7 +79,7 @@
<ant antfile="${newt.build.xml}" dir="${newt.make}" target="all" inheritRefs="true" inheritAll="true"/>
</target>
- <target name="build.oculusvr" depends="init">
+ <target name="build.oculusvr" depends="init" if="oculusvr.sdk.available">
<ant antfile="${oculusvr.build.xml}" dir="${oculusvr.make}" target="all" inheritRefs="true" inheritAll="true"/>
</target>