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
path: root/config
diff options
context:
space:
mode:
authorNathan Letwory <nathan@letworyinteractive.com>2006-08-14 16:47:13 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2006-08-14 16:47:13 +0400
commit800ae7cf466dd50c15c3ecf655f68e0d43de12f2 (patch)
tree7aa76990341b49572163225210ffc20f2d76336e /config
parent404ccd1a07a5b2d5f649f3403ced9cc37f4556b8 (diff)
[ #4035 ] patch to make scons compile with ffmpeg in mingw
Submitted by Joseph Eagar (joeedh). windows/gcc ffmpeg library may need recompiling to support all codecs necessary (ie. H264 doesn't work).
Diffstat (limited to 'config')
-rw-r--r--config/win32-mingw-config.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/config/win32-mingw-config.py b/config/win32-mingw-config.py
index 5d256300685..6a4aed6503f 100644
--- a/config/win32-mingw-config.py
+++ b/config/win32-mingw-config.py
@@ -12,6 +12,12 @@ BF_OPENAL_INC = '${BF_OPENAL}/include'
BF_OPENAL_LIB = 'openal_static'
BF_OPENAL_LIBPATH = '${BF_OPENAL}/lib'
+WITH_BF_FFMPEG = 'false'
+BF_FFMPEG = LCGDIR + '/gcc/ffmpeg'
+BF_FFMPEG_LIB = 'avformat avutil avcodec'
+BF_FFMPEG_LIBPATH = '${BF_FFMPEG}/lib'
+BF_FFMPEG_INC = '${BF_FFMPEG}/include'
+
WITH_BF_SDL = 'true'
BF_SDL = LCGDIR + '/sdl'
BF_SDL_INC = '${BF_SDL}/include'