code cleanup: split scons includes onto multiple lines, reduce chance of include conflicts later on.

This commit is contained in:
2013-05-20 18:42:28 +00:00
parent 53fd499d28
commit 6de829cb7a
57 changed files with 941 additions and 287 deletions

View File

@@ -40,7 +40,16 @@ if window_system == 'darwin':
pf = ['GHOST_DisplayManager', 'GHOST_System', 'GHOST_SystemPaths', 'GHOST_Window', 'GHOST_DropTarget', 'GHOST_NDOFManager', 'GHOST_Sizer']
defs=['_USE_MATH_DEFINES']
incs = '. ../string #extern/glew/include #source/blender/imbuf #source/blender/makesdna ' + env['BF_OPENGL_INC']
incs = [
'.',
'#extern/glew/include',
'#source/blender/imbuf',
'#source/blender/makesdna',
'../string',
]
incs = ' '.join(incs)
incs += ' ' + env['BF_OPENGL_INC']
if env['WITH_GHOST_SDL']:
for f in pf: