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:
authorJoerg Mueller <nexyon@gmail.com>2009-08-28 16:38:59 +0400
committerJoerg Mueller <nexyon@gmail.com>2009-08-28 16:38:59 +0400
commitd7656684e213e4755e6f499d2e3a0734507e803d (patch)
tree6c7bc47c3aea137210254c8495023a168be04904
parent6a8020b9c6693bdb14885914e8688847e2d11629 (diff)
Quick fix for scons (untested though :/).
-rw-r--r--source/blender/editors/SConscript1
-rw-r--r--source/blender/editors/sound/SConscript14
2 files changed, 15 insertions, 0 deletions
diff --git a/source/blender/editors/SConscript b/source/blender/editors/SConscript
index 05f17dae1a1..ccffbdb15d5 100644
--- a/source/blender/editors/SConscript
+++ b/source/blender/editors/SConscript
@@ -15,6 +15,7 @@ SConscript(['datafiles/SConscript',
'gpencil/SConscript',
'physics/SConscript',
'preview/SConscript',
+ 'sound/SConscript',
'space_buttons/SConscript',
'space_file/SConscript',
'space_image/SConscript',
diff --git a/source/blender/editors/sound/SConscript b/source/blender/editors/sound/SConscript
new file mode 100644
index 00000000000..7968f4c53a9
--- /dev/null
+++ b/source/blender/editors/sound/SConscript
@@ -0,0 +1,14 @@
+#!/usr/bin/python
+Import ('env')
+
+sources = env.Glob('*.c')
+
+incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../imbuf'
+incs += ' ../../windowmanager #/intern/guardedalloc'
+incs += ' #/intern/guardedalloc'
+incs += ' ../../makesrna ../../python'
+incs += ' #/intern/audaspace/intern'
+
+defs = []
+
+env.BlenderLib ( 'bf_editors_sound', sources, Split(incs), defs, libtype=['core'], priority=[35] )