From 6de829cb7a2b78657d3aa1d1ced04ac98cd8ebac Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 20 May 2013 18:42:28 +0000 Subject: code cleanup: split scons includes onto multiple lines, reduce chance of include conflicts later on. --- source/blender/makesdna/SConscript | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'source/blender/makesdna/SConscript') diff --git a/source/blender/makesdna/SConscript b/source/blender/makesdna/SConscript index dba0f84170e..f276070f3dc 100644 --- a/source/blender/makesdna/SConscript +++ b/source/blender/makesdna/SConscript @@ -33,9 +33,13 @@ defs = [] o = SConscript('intern/SConscript') objs += o -incs = '#/intern/guardedalloc . ../blenlib' +incs = [ + '.', + '#/intern/guardedalloc', + '../blenlib', + ] if env['WITH_BF_FREESTYLE']: defs.append('WITH_FREESTYLE') -env.BlenderLib ( 'bf_dna', objs, Split(incs), defs, libtype=['core','player'], priority = [215,200] ) +env.BlenderLib('bf_dna', objs, incs, defs, libtype=['core', 'player'], priority = [215, 200]) -- cgit v1.2.3