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>2013-03-27 12:06:07 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-03-27 12:06:07 +0400
commitf834f485d65eee994e64f269a79f57b6f36955b8 (patch)
tree05295ea62ffe5bf7318763986a9601c570eacc1a
parentd358458a8d3bc37c4ea5418fa6e6c9c259704f51 (diff)
Why oh why makesrna is split into two separate scons files..
Fixed missing audio devices when building with scons
-rw-r--r--source/blender/makesrna/SConscript9
1 files changed, 9 insertions, 0 deletions
diff --git a/source/blender/makesrna/SConscript b/source/blender/makesrna/SConscript
index 6031e797905..f040940a448 100644
--- a/source/blender/makesrna/SConscript
+++ b/source/blender/makesrna/SConscript
@@ -97,6 +97,15 @@ if env['WITH_BF_OCEANSIM']:
if env['WITH_BF_CYCLES']:
defs.append('WITH_CYCLES')
+if env['WITH_BF_SDL']:
+ defs.append('WITH_SDL')
+
+if env['WITH_BF_OPENAL']:
+ defs.append('WITH_OPENAL')
+
+if env['WITH_BF_JACK']:
+ defs.append('WITH_JACK')
+
if env['OURPLATFORM'] == 'linux':
cflags='-pthread'
incs += ' ../../../extern/binreloc/include'