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:
authorSergey Sharybin <sergey.vfx@gmail.com>2011-12-28 16:35:58 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2011-12-28 16:35:58 +0400
commitc5a81536ca65e446ac23d10a781d916ca7d55509 (patch)
treef7427cf30c60e121d92cc8e7d2cdd17a0b2bc14b /source/blender/python/SConscript
parent0b00bb236ccc65d9861bbe6e9c50cb989117c9ee (diff)
Add FFmpeg libraries versions to system-info.txt
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 7075b0592b8..481d66a9de7 100644
--- a/source/blender/python/SConscript
+++ b/source/blender/python/SConscript
@@ -46,5 +46,8 @@ if env['WITH_BF_INTERNATIONAL']:
if env['WITH_BF_CYCLES']:
defs.append('WITH_CYCLES')
+if env['WITH_BF_FFMPEG']:
+ defs.append('WITH_FFMPEG')
+
sources = env.Glob('intern/*.c')
env.BlenderLib( libname = 'bf_python', sources = Split(sources), includes = Split(incs), defines = defs, libtype = ['core'], priority = [361])