Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJörg Müller <nexyon@gmail.com>2015-07-28 15:52:21 +0300
committerJörg Müller <nexyon@gmail.com>2015-07-28 15:53:06 +0300
commitbe047fe455b8a289b2ebc43af81374510c0b6a06 (patch)
tree7faad613ac13126848c8328568ca28e25b753e01 /intern/SConscript
parentf29625922f61c772e01a9bf2902a41bd4e4e264e (diff)
Audaspace: building without audaspace.
- Fixed building without for cmake. - Scons can now build without audaspace too.
Diffstat (limited to 'intern/SConscript')
-rw-r--r--intern/SConscript6
1 files changed, 4 insertions, 2 deletions
diff --git a/intern/SConscript b/intern/SConscript
index a13f67537ac..124afd4bbb9 100644
--- a/intern/SConscript
+++ b/intern/SConscript
@@ -27,8 +27,7 @@
Import ('env')
-SConscript(['audaspace/SConscript',
- 'string/SConscript',
+SConscript(['string/SConscript',
'ghost/SConscript',
'glew-mx/SConscript',
'guardedalloc/SConscript',
@@ -45,6 +44,9 @@ SConscript(['audaspace/SConscript',
# currently only contains headers
# SConscript('container/SConscript')
+if env['WITH_BF_AUDASPACE']:
+ SConscript(['audaspace/SConscript'])
+
if env ['WITH_BF_REMESH']:
SConscript(['dualcon/SConscript'])