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/avi/SConscript | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'source/blender/avi') diff --git a/source/blender/avi/SConscript b/source/blender/avi/SConscript index 0e46781b768..6caeada0e05 100644 --- a/source/blender/avi/SConscript +++ b/source/blender/avi/SConscript @@ -29,7 +29,13 @@ Import ('env') sources = env.Glob('intern/*.c') -incs = '. #/intern/guardedalloc ../blenlib' -incs += ' ' + env['BF_JPEG_INC'] +incs = [ + '.', + '#/intern/guardedalloc', + '../blenlib', + env['BF_JPEG_INC'], + ] -env.BlenderLib ('bf_avi', sources, Split(incs), [], libtype=['core','player'], priority = [190,120] ) +defs = [] + +env.BlenderLib ('bf_avi', sources, incs, defs, libtype=['core','player'], priority = [190,120] ) -- cgit v1.2.3