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
path: root/tools
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 /tools
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 'tools')
-rwxr-xr-xtools/btools.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/btools.py b/tools/btools.py
index 6f3c8537c68..b3bb097a240 100755
--- a/tools/btools.py
+++ b/tools/btools.py
@@ -110,6 +110,7 @@ def SetupBufferedOutput( env ):
def read_opts(cfg, args):
localopts = Options.Options(cfg, args)
localopts.AddOptions(
+ ('LCGDIR', 'The path to the CVS Lib folder, if you platform has it'),
('BF_DEBUG_LIBS', 'list of libraries to build with debug symbols'),
('BF_PYTHON', 'base path for python', ''),
('BF_PYTHON_VERSION', 'Python version to use', ''),
@@ -118,7 +119,7 @@ def read_opts(cfg, args):
('BF_PYTHON_LIB', 'Python library', ''),
('BF_PYTHON_LIBPATH', 'Library path', ''),
('BF_PYTHON_LINKFLAGS', 'Python link flags', ''),
-
+ ('BF_NO_ELBEEM', 'Disable Fluid Sim', 'false'),
(BoolOption('WITH_BF_OPENAL', 'Use OpenAL if true', '')),
('BF_OPENAL', 'base path for OpenAL', ''),
('BF_OPENAL_INC', 'include path for python headers', ''),