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>2008-10-22 15:28:10 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2008-10-22 15:28:10 +0400
commit2ecf987dc665eff477fb03a0cef0b2972e4b78d2 (patch)
treeb0f1e3803bc72dea7bbbbd42f684023ee6c8cfde /source/creator
parent688cc11302caa8cde5649e6230c66a1c60cd24a2 (diff)
* Minor cleanup of SCons files
- cleanup of boolean usage - use True and False now instead of 'true'/'false' or 0/1 - changed SConscripts accordingly
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/SConscript6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/creator/SConscript b/source/creator/SConscript
index 15f73040f4b..c5a661abd69 100644
--- a/source/creator/SConscript
+++ b/source/creator/SConscript
@@ -11,15 +11,15 @@ incs += ' ../kernel/gen_system #/extern/glew/include ../blender/gpu'
incs += ' ' + env['BF_OPENGL_INC']
defs = []
-if env['WITH_BF_QUICKTIME']==1:
+if env['WITH_BF_QUICKTIME']:
incs += ' ' + env['BF_QUICKTIME_INC']
defs.append('WITH_QUICKTIME')
-if env['WITH_BF_BINRELOC']==1:
+if env['WITH_BF_BINRELOC']:
incs += ' ../../extern/binreloc/include'
defs.append('WITH_BINRELOC')
-if env['WITH_BF_OPENEXR']==1:
+if env['WITH_BF_OPENEXR']:
defs.append('WITH_OPENEXR')
if not env['WITH_BF_SDL']: