Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2013-05-20 22:42:28 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-05-20 22:42:28 +0400
commit6de829cb7a2b78657d3aa1d1ced04ac98cd8ebac (patch)
tree91c524684eb53230bbdc8b139558458fe390b41d /source/blender/nodes/SConscript
parent53fd499d28077144ddb97237aced8b26ca5744cc (diff)
code cleanup: split scons includes onto multiple lines, reduce chance of include conflicts later on.
Diffstat (limited to 'source/blender/nodes/SConscript')
-rw-r--r--source/blender/nodes/SConscript34
1 files changed, 24 insertions, 10 deletions
diff --git a/source/blender/nodes/SConscript b/source/blender/nodes/SConscript
index 9f56689bf43..9a72ab28c03 100644
--- a/source/blender/nodes/SConscript
+++ b/source/blender/nodes/SConscript
@@ -31,17 +31,31 @@ sources = env.Glob('intern/*.c')
cmpsources = env.Glob('composite/*.c') + env.Glob('composite/nodes/*.c')
shdsources = env.Glob('shader/*.c') + env.Glob('shader/nodes/*.c')
texsources = env.Glob('texture/*.c') + env.Glob('texture/nodes/*.c')
-incs = '. ./intern '
-incs += './composite ./shader ./texture '
-incs += '#/intern/guardedalloc ../editors/include ../blenlib ../makesdna'
-incs += ' ../render/extern/include ../makesrna '
-incs += ' ../imbuf ../avi '
-incs += ' ../blenloader'
-incs += ' ../blenfont ../blenkernel ../renderconverter '
-incs += ' ../gpu #/extern/glew/include '
-incs += ' ' + env['BF_OPENGL_INC']
-incs += ' ' + env['BF_ZLIB_INC']
+incs = [
+ '.',
+ './composite',
+ './intern',
+ './shader',
+ './texture',
+ '#/intern/guardedalloc',
+ '#/extern/glew/include',
+ '../avi',
+ '../blenfont',
+ '../blenkernel',
+ '../blenlib',
+ '../blenloader',
+ '../editors/include',
+ '../gpu',
+ '../imbuf',
+ '../makesdna',
+ '../makesrna',
+ '../render/extern/include',
+ '../renderconverter',
+ env['BF_OPENGL_INC'],
+ env['BF_ZLIB_INC'],
+ ]
+incs = ' '.join(incs)
defs = []