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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2012-08-23 14:56:14 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2012-08-23 14:56:14 +0400
commitfa6a8b8090236db6bd295239abc3f10815ba1c30 (patch)
treec68a2e2cab0afba70af639e2fbfa21b64264be18 /source/blender/ikplugin
parentbbd8863956b1dbaa31fe0cae64080a4224cb883d (diff)
Fix #32389: scons was compiling without iksolver and only itasc since a few days,
which gave performance issues.
Diffstat (limited to 'source/blender/ikplugin')
-rw-r--r--source/blender/ikplugin/SConscript1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/ikplugin/SConscript b/source/blender/ikplugin/SConscript
index 38c53894df8..97b1cf18e0d 100644
--- a/source/blender/ikplugin/SConscript
+++ b/source/blender/ikplugin/SConscript
@@ -7,5 +7,6 @@ incs = '#/intern/guardedalloc #/intern/iksolver/extern ../makesdna ../blenlib'
incs += ' ../blenkernel ../include ../ikplugin #/intern/itasc #/extern/Eigen3'
defs.append('WITH_IK_ITASC')
+defs.append('WITH_IK_SOLVER')
env.BlenderLib ( 'bf_ikplugin', sources, Split(incs), defs, libtype=['core','player'], priority=[180, 190] )