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>2008-11-11 17:14:22 +0300
committerCampbell Barton <ideasman42@gmail.com>2008-11-11 17:14:22 +0300
commit483136c8e4d73fafe2b3e0953a6325107558d896 (patch)
tree478f98ce53b79cb877fe673e0808d8e8bb45ceb5 /source/blender/nodes/SConscript
parent5161c2ee3a6de421c47bd5e02bb6be4fe54191dc (diff)
Adjusted scons files so disabling quicktime, python and sdl also removes their includes when building.
writefile.c had usless include.
Diffstat (limited to 'source/blender/nodes/SConscript')
-rw-r--r--source/blender/nodes/SConscript12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/nodes/SConscript b/source/blender/nodes/SConscript
index 038ce4b749e..0cfef20dae7 100644
--- a/source/blender/nodes/SConscript
+++ b/source/blender/nodes/SConscript
@@ -7,21 +7,21 @@ sources += env.Glob('intern/SHD_nodes/*.c')
incs = '. ./intern '
incs += '#/intern/guardedalloc ../include ../blenlib ../makesdna'
-incs += ' ../python ../render/extern/include '
+incs += ' ../render/extern/include '
incs += ' ../imbuf ../avi '
-incs += ' ../blenloader ../quicktime'
+incs += ' ../blenloader'
incs += ' ../blenkernel ../renderconverter '
incs += ' ../gpu #/extern/glew/include '
-
-incs += ' ' + env['BF_PYTHON_INC']
incs += ' ' + env['BF_OPENGL_INC']
incs += ' ' + env['BF_ZLIB_INC']
-incs += ' ' + env['BF_SDL_INC']
defs = ''
-if not env['WITH_BF_PYTHON']:
+if env['WITH_BF_PYTHON']:
+ incs += ' ' + env['BF_PYTHON_INC']
+ incs += ' ../python'
+else:
defs += 'DISABLE_PYTHON'
if env['WITH_BF_INTERNATIONAL']: