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:
authorNathan Letwory <nathan@letworyinteractive.com>2006-11-03 11:13:01 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2006-11-03 11:13:01 +0300
commit7c3cdb21a34809407b2201eaacd49d91013cad46 (patch)
tree592f65ea02c4b74373d505d99463ef8516ace57b /tools/Blender.py
parent10fbfdad10a3060c97b5ff18b21815fba2a52547 (diff)
* control the creation of .bsc files when BF_DEBUG=1 on win32-vc. BF_BSC=1 (default for BF_DEBUG=1) will have .bsc generated, but this takes an awful long time, so BF_BSC=0 will skip that step.
Diffstat (limited to 'tools/Blender.py')
-rw-r--r--tools/Blender.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/Blender.py b/tools/Blender.py
index 4e8ac0f5bf2..2d76e474263 100644
--- a/tools/Blender.py
+++ b/tools/Blender.py
@@ -427,7 +427,7 @@ class BlenderEnvironment(SConsEnvironment):
lenv.Append(LIBS = lenv['BF_QUICKTIME_LIB'])
lenv.Append(LIBPATH = lenv['BF_QUICKTIME_LIBPATH'])
prog = lenv.Program(target=builddir+'bin/'+progname, source=sources)
- if lenv['BF_DEBUG'] and lenv['OURPLATFORM']=='win32-vc':
+ if lenv['BF_DEBUG'] and lenv['OURPLATFORM']=='win32-vc' and lenv['BF_BSC']:
f = lenv.File(progname + '.bsc', builddir)
brs = lenv.Command(f, prog, [bsc])
SConsEnvironment.Default(self, brs)