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/freestyle/SConscript
parent53fd499d28077144ddb97237aced8b26ca5744cc (diff)
code cleanup: split scons includes onto multiple lines, reduce chance of include conflicts later on.
Diffstat (limited to 'source/blender/freestyle/SConscript')
-rw-r--r--source/blender/freestyle/SConscript27
1 files changed, 20 insertions, 7 deletions
diff --git a/source/blender/freestyle/SConscript b/source/blender/freestyle/SConscript
index d5ccf12d2db..37213ab856a 100644
--- a/source/blender/freestyle/SConscript
+++ b/source/blender/freestyle/SConscript
@@ -3,14 +3,27 @@ import sys
Import ('env')
sources = []
-defs = ['WITH_FREESTYLE']
-incs = ''
-incs += '../blenkernel ../blenloader ../blenlib ../imbuf ../makesdna ../makesrna'
-incs += ' ../python ../python/intern ../render/extern/include ../render/intern/include'
-incs += ' #/extern/glew/include #/intern/guardedalloc ../freestyle'
-incs += ' ' + env['BF_PYTHON_INC']
-incs += ' ' + env['BF_PNG_INC']
+incs = [
+ '#/intern/guardedalloc',
+ '#/extern/glew/include',
+ '../blenkernel',
+ '../blenlib',
+ '../blenloader',
+ '../freestyle',
+ '../imbuf',
+ '../makesdna',
+ '../makesrna',
+ '../python',
+ '../python/intern',
+ '../render/extern/include',
+ '../render/intern/include',
+ env['BF_PYTHON_INC'],
+ env['BF_PNG_INC'],
+ ]
+incs = ' '.join(incs)
+
+defs = ['WITH_FREESTYLE']
if env['OURPLATFORM'] == 'linux2':
cflags='-pthread'