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/editors/space_api/SConscript | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) (limited to 'source/blender/editors/space_api/SConscript') diff --git a/source/blender/editors/space_api/SConscript b/source/blender/editors/space_api/SConscript index a07be054011..b7d8342f6fa 100644 --- a/source/blender/editors/space_api/SConscript +++ b/source/blender/editors/space_api/SConscript @@ -29,9 +29,21 @@ Import ('env') sources = env.Glob('*.c') -incs = '../include ../io ../../blenlib ../../blenkernel ../../blenloader ../../makesdna' -incs += ' ../../windowmanager ../../python ../../makesrna ../../bmesh' -incs += ' #/intern/guardedalloc #/extern/glew/include' +incs = [ + '#/intern/guardedalloc', + '#/extern/glew/include', + '../include', + '../io', + '../../blenkernel', + '../../blenlib', + '../../blenloader', + '../../bmesh', + '../../makesdna', + '../../makesrna', + '../../python', + '../../windowmanager', + ] +incs = ' '.join(incs) defs = '' -- cgit v1.2.3