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:
authorThomas Dinges <blender@dingto.org>2011-12-28 19:08:58 +0400
committerThomas Dinges <blender@dingto.org>2011-12-28 19:08:58 +0400
commit6e94bdd8e433d2c7f250b1998ce5acaefd5bac5e (patch)
treef963f1f869aae1fb06e0784d2fb9be427732a8a4 /source/blender/python/SConscript
parent45ac43946f2e6b944eef64938e7607ee9e641c6d (diff)
Scons/FFMPEG:
* Fixing compile error, ffmpeg include was missing.
Diffstat (limited to 'source/blender/python/SConscript')
-rw-r--r--source/blender/python/SConscript1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/python/SConscript b/source/blender/python/SConscript
index 481d66a9de7..cd1666d0eed 100644
--- a/source/blender/python/SConscript
+++ b/source/blender/python/SConscript
@@ -48,6 +48,7 @@ if env['WITH_BF_CYCLES']:
if env['WITH_BF_FFMPEG']:
defs.append('WITH_FFMPEG')
+ incs += ' ' + env['BF_FFMPEG_INC']
sources = env.Glob('intern/*.c')
env.BlenderLib( libname = 'bf_python', sources = Split(sources), includes = Split(incs), defines = defs, libtype = ['core'], priority = [361])