Quick fix for scons (untested though :/).
This commit is contained in:
@@ -15,6 +15,7 @@ SConscript(['datafiles/SConscript',
|
||||
'gpencil/SConscript',
|
||||
'physics/SConscript',
|
||||
'preview/SConscript',
|
||||
'sound/SConscript',
|
||||
'space_buttons/SConscript',
|
||||
'space_file/SConscript',
|
||||
'space_image/SConscript',
|
||||
|
||||
14
source/blender/editors/sound/SConscript
Normal file
14
source/blender/editors/sound/SConscript
Normal 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] )
|
||||
Reference in New Issue
Block a user