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:
authorNils Thuerey <nils@thuerey.de>2006-08-22 15:18:00 +0400
committerNils Thuerey <nils@thuerey.de>2006-08-22 15:18:00 +0400
commitf21f3cb290e221e4b4610e43c17e9702b43a1cb5 (patch)
treee168253c66d3cc03dd83d3974168306bd5cd21ab /intern/SConscript
parent91c9917bc00c196ce03d3662b06443c4539bc87e (diff)
- modified patch #4681, for scons compiling
of the fluidsim can now be disabled with the flag: BF_NO_ELBEEM='true', e.g. for irix systems. (The number of ifdefs from the original patch was reduced, and the defines are now only necessary when elbeem is switched off.) - particle generation option is available again
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: