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-11-25 11:00:58 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2008-11-25 11:00:58 +0300
commitcac2a438ae49a370c28f0429c7377b8baea5ff22 (patch)
treed5cf00b360fdd60ea37e7c865876b96e64f63507
parentf1474648d318808664ac37c77524b3171a65456a (diff)
* make sure Bullet is enabled when WITH_BF_BULLET=True
-rw-r--r--source/blender/src/SConscript3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/src/SConscript b/source/blender/src/SConscript
index c5edd711d0a..451afc9b244 100644
--- a/source/blender/src/SConscript
+++ b/source/blender/src/SConscript
@@ -94,6 +94,9 @@ if env['WITH_BF_SDL']:
else:
defs.append('DISABLE_SDL')
+if env['WITH_BF_BULLET']:
+ defs.append('WITH_BULLET')
+
if env['BF_SPLIT_SRC'] and (env['OURPLATFORM'] == 'win32-mingw'):
for i in range(numlibs):
env.BlenderLib ( libname = 'src%d' % (i), sources = subsources[i], includes = Split(incs), defines = defs, libtype=['core', 'intern'], priority = [5, 25] )