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/imbuf/SConscript | 26 ++++++++++++++++++-------- 1 file changed, 18 insertions(+), 8 deletions(-) (limited to 'source/blender/imbuf/SConscript') diff --git a/source/blender/imbuf/SConscript b/source/blender/imbuf/SConscript index 453cf6a509e..03064df293d 100644 --- a/source/blender/imbuf/SConscript +++ b/source/blender/imbuf/SConscript @@ -30,14 +30,24 @@ Import ('env') sources = env.Glob('intern/*.c') -incs = '. ../makesdna ../makesrna #/intern/guardedalloc #/intern/memutil ../blenlib' -incs += ' ../avi ../blenkernel ../blenloader' -incs += ' #/intern/ffmpeg #intern/opencolorio' - -incs += ' ' + env['BF_JPEG_INC'] -incs += ' ' + env['BF_PNG_INC'] -incs += ' ' + env['BF_TIFF_INC'] -incs += ' ' + env['BF_ZLIB_INC'] +incs = [ + '.', + '#/intern/opencolorio', + '#/intern/ffmpeg', + '#/intern/guardedalloc', + '#/intern/memutil', + '../avi', + '../blenkernel', + '../blenlib', + '../blenloader', + '../makesdna', + '../makesrna', + env['BF_JPEG_INC'], + env['BF_PNG_INC'], + env['BF_TIFF_INC'], + env['BF_ZLIB_INC'], + ] +incs = ' '.join(incs) defs = [] -- cgit v1.2.3