Quick fix for scons (untested though :/).

This commit is contained in:
2009-08-28 12:38:59 +00:00
parent 6a8020b9c6
commit d7656684e2
2 changed files with 15 additions and 0 deletions

View File

@@ -15,6 +15,7 @@ SConscript(['datafiles/SConscript',
'gpencil/SConscript',
'physics/SConscript',
'preview/SConscript',
'sound/SConscript',
'space_buttons/SConscript',
'space_file/SConscript',
'space_image/SConscript',

View File

@@ -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] )