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:
authorNathan Letwory <nathan@letworyinteractive.com>2007-12-20 20:52:57 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2007-12-20 20:52:57 +0300
commit381e8b16b4e1ae4c1d4118bf2a76882a2ad7fc18 (patch)
treed798597db69739aeae20ca1200ea919ffa86b7fe /tools
parentc805d35c40f4dd1d15d9803636481b167d9ef6f0 (diff)
A little christmas present for the lazy coders.
In your user-config.py you can now set BF_FANCY='false' and enjoy the... lack of colors
Diffstat (limited to 'tools')
-rwxr-xr-xtools/btools.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/btools.py b/tools/btools.py
index 02d608c3cbc..6ff0f401742 100755
--- a/tools/btools.py
+++ b/tools/btools.py
@@ -55,7 +55,8 @@ def validate_arguments(args, bc):
'BF_VERSE_INCLUDE',
'VERSE_BUILD_BINARY', 'VERSE_BUILD_DIR', 'VERSE_REGEN_PROTO',
'BF_TWEAK_MODE', 'BF_SPLIT_SRC',
- 'WITHOUT_BF_INSTALL'
+ 'WITHOUT_BF_INSTALL',
+ 'BF_FANCY',
]
arg_list = ['BF_DEBUG', 'BF_QUIET', 'BF_CROSS', 'BF_UPDATE',
@@ -298,8 +299,9 @@ def read_opts(cfg, args):
(BoolOption('BF_BUILDINFO', 'Buildtime in splash if true', 'true')),
(BoolOption('BF_TWEAK_MODE', 'Enable tweak mode if true', 'false')),
- (BoolOption('BF_SPLIT_SRC', 'Split src lib into several chunks if true', 'false')),
+ (BoolOption('BF_SPLIT_SRC', 'Split src lib into several chunks if true', 'false')),
(BoolOption('WITHOUT_BF_INSTALL', 'dont install if true', 'false')),
+ (BoolOption('BF_FANCY', 'Enable fancy output if true', 'true')),
) # end of opts.AddOptions()