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:
authorCampbell Barton <ideasman42@gmail.com>2013-05-20 22:42:28 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-05-20 22:42:28 +0400
commit6de829cb7a2b78657d3aa1d1ced04ac98cd8ebac (patch)
tree91c524684eb53230bbdc8b139558458fe390b41d /source/blender/ikplugin
parent53fd499d28077144ddb97237aced8b26ca5744cc (diff)
code cleanup: split scons includes onto multiple lines, reduce chance of include conflicts later on.
Diffstat (limited to 'source/blender/ikplugin')
-rw-r--r--source/blender/ikplugin/SConscript23
1 files changed, 17 insertions, 6 deletions
diff --git a/source/blender/ikplugin/SConscript b/source/blender/ikplugin/SConscript
index 0d201cb423c..4a4cb4f2cbd 100644
--- a/source/blender/ikplugin/SConscript
+++ b/source/blender/ikplugin/SConscript
@@ -26,13 +26,24 @@
# ***** END GPL LICENSE BLOCK *****
Import ('env')
-defs = []
+
sources = env.Glob('intern/*.c') + env.Glob('intern/*.cpp')
-incs = '#/intern/guardedalloc #/intern/iksolver/extern ../makesdna ../blenlib'
-incs += ' ../blenkernel ../include ../ikplugin #/intern/itasc #/extern/Eigen3'
+incs = [
+ '#/extern/Eigen3',
+ '#/intern/guardedalloc',
+ '#/intern/itasc',
+ '#/intern/iksolver/extern',
+ '../blenkernel',
+ '../blenlib',
+ '../ikplugin',
+ '../include',
+ '../makesdna',
+ ]
-defs.append('WITH_IK_ITASC')
-defs.append('WITH_IK_SOLVER')
+defs = [
+ 'WITH_IK_ITASC',
+ 'WITH_IK_SOLVER',
+ ]
-env.BlenderLib ( 'bf_ikplugin', sources, Split(incs), defs, libtype=['core','player'], priority=[180, 190] )
+env.BlenderLib('bf_ikplugin', sources, incs, defs, libtype=['core', 'player'], priority=[180, 190])