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:
authorJean-Luc Peurière <jlp@nerim.net>2007-08-15 00:55:59 +0400
committerJean-Luc Peurière <jlp@nerim.net>2007-08-15 00:55:59 +0400
commit42b629a69b276270ee03a8250781ac73d2668b03 (patch)
tree100f007d8dab79cc1549e6df4c11a7f62e5387ad /tools/btools.py
parent6ab51ef2d7d3736c69adba4206577de83f846987 (diff)
add the option of not installing to scons build system
settting WITHOUT_BF_INSTALL='true' will disable the copying to INSTALL_DIR you can use that in your user-config.py or commandline slipping in minor cleaning for Os X builds
Diffstat (limited to 'tools/btools.py')
-rwxr-xr-xtools/btools.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/btools.py b/tools/btools.py
index 0e1fc81dcff..eb8f844df4d 100755
--- a/tools/btools.py
+++ b/tools/btools.py
@@ -54,7 +54,8 @@ def validate_arguments(args, bc):
'BF_PROFILE_FLAGS', 'LCGDIR', 'WITH_BF_VERSE',
'BF_VERSE_INCLUDE',
'VERSE_BUILD_BINARY', 'VERSE_BUILD_DIR', 'VERSE_REGEN_PROTO',
- 'BF_TWEAK_MODE'
+ 'BF_TWEAK_MODE',
+ 'WITHOUT_BF_INSTALL'
]
arg_list = ['BF_DEBUG', 'BF_QUIET', 'BF_CROSS', 'BF_UPDATE',
@@ -296,6 +297,7 @@ 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('WITHOUT_BF_INSTALL', 'dont install if true', 'false')),
) # end of opts.AddOptions()