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:
authorCampbell Barton <ideasman42@gmail.com>2009-09-25 06:40:10 +0400
committerCampbell Barton <ideasman42@gmail.com>2009-09-25 06:40:10 +0400
commit314d460eb87ec6f383358e0dbb77e9fdf5c99f23 (patch)
treedbad3bfa62dc321298218c3de15e666ff65d7950 /tools/btools.py
parentb4f235adc0a61a74b753db4704af0c02229eb856 (diff)
options WITH_LZO and WITH_LZMA for cmake and scons (default to true) pointcache.c also needed to have checks for these defines.
Diffstat (limited to 'tools/btools.py')
-rwxr-xr-xtools/btools.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/btools.py b/tools/btools.py
index e3f3827ff45..b1584ae8784 100755
--- a/tools/btools.py
+++ b/tools/btools.py
@@ -56,6 +56,7 @@ def validate_arguments(args, bc):
'WITH_BF_PLAYER',
'WITH_BF_NOBLENDER',
'WITH_BF_BINRELOC',
+ 'WITH_BF_LZO', 'WITH_BF_LZMA',
'LCGDIR',
'BF_CXX', 'WITH_BF_STATICCXX', 'BF_CXX_LIB_STATIC',
'BF_TWEAK_MODE', 'BF_SPLIT_SRC',
@@ -379,6 +380,9 @@ def read_opts(cfg, args):
(BoolVariable('BF_QUIET', 'Enable silent output if true', True)),
(BoolVariable('WITH_BF_BINRELOC', 'Enable relocatable binary (linux only)', False)),
+ (BoolVariable('WITH_BF_LZO', 'Enable fast LZO pointcache compression', True)),
+ (BoolVariable('WITH_BF_LZMA', 'Enable best LZMA pointcache compression', True)),
+
(BoolVariable('WITH_BF_LCMS', 'Enable color correction with lcms', False)),
('BF_LCMS_LIB', 'LCMSlibrary', 'lcms'),