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:
Diffstat (limited to 'intern/SConscript')
-rw-r--r--intern/SConscript6
1 files changed, 5 insertions, 1 deletions
diff --git a/intern/SConscript b/intern/SConscript
index 606a81ae923..ecb7f29fab6 100644
--- a/intern/SConscript
+++ b/intern/SConscript
@@ -1,4 +1,6 @@
#!/usr/bin/python
+Import ('env')
+
SConscript(['SoundSystem/SConscript',
'string/SConscript',
'ghost/SConscript',
@@ -10,7 +12,6 @@ SConscript(['SoundSystem/SConscript',
'decimation/SConscript',
'iksolver/SConscript',
'boolop/SConscript',
- 'elbeem/SConscript',
'opennl/SConscript'])
# NEW_CSG was intended for intern/csg, but
@@ -19,6 +20,9 @@ SConscript(['SoundSystem/SConscript',
# perhaps get rid of intern/csg?
NEW_CSG='false'
+if env['BF_NO_ELBEEM'] == 'false':
+ SConscript(['elbeem/SConscript'])
+
if NEW_CSG=='false':
SConscript(['bsp/SConscript'])
else: