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:
authorSergej Reich <sergej.reich@googlemail.com>2013-01-25 09:02:36 +0400
committerSergej Reich <sergej.reich@googlemail.com>2013-01-25 09:02:36 +0400
commit5c8a978d1f3d7d887c2ecccfdfc5a198ac0d37d1 (patch)
tree28581f2f661295ef8be4530d201961d4ae8b1d38 /source/blender/makesrna/SConscript
parent38c94e919457eacdaedf641bb4afdd68af288b21 (diff)
scons: Add missing WITH_BULLET define
Fixes [#33980] Ridid Body crashes when changing Collision shape with playback as well as several other rigid body bugs wtih scons.
Diffstat (limited to 'source/blender/makesrna/SConscript')
-rw-r--r--source/blender/makesrna/SConscript4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/makesrna/SConscript b/source/blender/makesrna/SConscript
index df7d0f6f6de..47750617e55 100644
--- a/source/blender/makesrna/SConscript
+++ b/source/blender/makesrna/SConscript
@@ -47,6 +47,10 @@ defs = []
if env['WITH_BF_SMOKE']:
defs.append('WITH_SMOKE')
+if env['WITH_BF_BULLET']:
+ defs.append('WITH_BULLET')
+ incs += ' ../../rigidbody'
+
if env['WITH_BF_OPENEXR']:
defs.append('WITH_OPENEXR')