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:
authorKen Hughes <khughes@pacific.edu>2007-07-09 20:03:26 +0400
committerKen Hughes <khughes@pacific.edu>2007-07-09 20:03:26 +0400
commit1d1faacdff0a9734e3c261e007beb14947812535 (patch)
treebbe7d3203363bcda2933d26939c0c837fcfddbf6 /source/blender/python/SConscript
parentdb2cc0991389eddde299040b1606127940932eeb (diff)
Bug #6924: Add WITH_FFMPEG compilation switch when WITH_BF_FFMPEG is true for
scons. Can someone verify that other build systems are also including this?
Diffstat (limited to 'source/blender/python/SConscript')
-rw-r--r--source/blender/python/SConscript3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/python/SConscript b/source/blender/python/SConscript
index 59fc6746d86..9cd245394b0 100644
--- a/source/blender/python/SConscript
+++ b/source/blender/python/SConscript
@@ -20,4 +20,7 @@ if env['WITH_BF_QUICKTIME']==1:
if env['WITH_BF_OPENEXR'] == 1:
defs.append('WITH_OPENEXR')
+if env['WITH_BF_FFMPEG'] == 1:
+ defs.append('WITH_FFMPEG')
+
env.BlenderLib ( libname='blender_python', sources = Split(sources), includes = Split(incs), defines = defs, libtype=['core','game2'], priority = [60,115] )