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:
authorNathan Letwory <nathan@letworyinteractive.com>2009-08-25 14:56:01 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2009-08-25 14:56:01 +0400
commit4c8d32b4bf624bd70a4c2b20a9c971ae92e8f8a3 (patch)
treedbab30e26f06fbc6a61b4c87a7461582e71180ae /tools/Blender.py
parent2d38d0d1e1cf8a2a62639eeb3fcbd81de6e69080 (diff)
== SCons ==
* Add sndfile support (False by default). Note: for this to work, make sure that FFMPEG-support is disabled.
Diffstat (limited to 'tools/Blender.py')
-rw-r--r--tools/Blender.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/Blender.py b/tools/Blender.py
index 789a6981558..421a79454df 100644
--- a/tools/Blender.py
+++ b/tools/Blender.py
@@ -130,6 +130,8 @@ def setup_staticlibs(lenv):
libincs += Split(lenv['BF_FFMPEG_LIBPATH'])
if lenv['WITH_BF_JACK']:
libincs += Split(lenv['BF_JACK_LIBPATH'])
+ if lenv['WITH_BF_SNDFILE']:
+ libincs += Split(lenv['BF_SNDFILE_LIBPATH'])
if lenv['WITH_BF_OPENEXR']:
libincs += Split(lenv['BF_OPENEXR_LIBPATH'])
if lenv['WITH_BF_STATICOPENEXR']:
@@ -191,6 +193,8 @@ def setup_syslibs(lenv):
syslibs += Split(lenv['BF_OGG_LIB'])
if lenv['WITH_BF_JACK']:
syslibs += Split(lenv['BF_JACK_LIB'])
+ if lenv['WITH_BF_SNDFILE']:
+ syslibs += Split(lenv['BF_SNDFILE_LIB'])
if lenv['WITH_BF_FFTW3']:
syslibs += Split(lenv['BF_FFTW3_LIB'])
if lenv['WITH_BF_SDL']: