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-30 01:56:55 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-05-30 01:56:55 +0400
commit9cf6e305a90581442d374860d3e4f278624d033c (patch)
tree9d002ad5a5c4e7641c79c10c2e40dcd39aa72db9 /source/gameengine/SceneGraph/SConscript
parent65baf6ca5c92d7e12cedafef7a37b87d3bb37e94 (diff)
split bge includes for scons onto their own lines (for easier merging)
Diffstat (limited to 'source/gameengine/SceneGraph/SConscript')
-rw-r--r--source/gameengine/SceneGraph/SConscript11
1 files changed, 7 insertions, 4 deletions
diff --git a/source/gameengine/SceneGraph/SConscript b/source/gameengine/SceneGraph/SConscript
index c88a2d6280b..f6e73a902a4 100644
--- a/source/gameengine/SceneGraph/SConscript
+++ b/source/gameengine/SceneGraph/SConscript
@@ -29,16 +29,19 @@ Import ('env')
sources = env.Glob('*.cpp')
-incs = '. #intern/moto/include'
+incs = [
+ '.',
+ '#intern/moto/include',
+ ]
defs = []
if env['WITH_BF_CXX_GUARDEDALLOC']:
defs.append('WITH_CXX_GUARDEDALLOC')
- incs += ' #intern/guardedalloc'
+ incs.append('#intern/guardedalloc')
if env['WITH_BF_PYTHON']:
- incs += ' ' + env['BF_PYTHON_INC']
defs.append('WITH_PYTHON')
+ incs.extend(Split(env['BF_PYTHON_INC']))
-env.BlenderLib ( 'ge_scenegraph', sources, Split(incs), defs, libtype=['core','player'], priority=[325,85], cxx_compileflags=env['BGE_CXXFLAGS'])
+env.BlenderLib('ge_scenegraph', sources, incs, defs, libtype=['core', 'player'], priority=[325, 85], cxx_compileflags=env['BGE_CXXFLAGS'])