forked from bartvdbraak/blender
93d9e7749d
I did a very drastic cleanup for the different libgroups, there's now only a few left. It compiled with scons/msvc, will be testing in a bit on linux, too. If you get any problems, please reply to this commit message on the taskforce ML.
21 lines
543 B
Python
21 lines
543 B
Python
#!/usr/bin/python
|
|
|
|
Import ('env')
|
|
|
|
sources = env.Glob('dummy/*.cpp') + env.Glob('intern/*.cpp')
|
|
|
|
incs = '. intern ../moto/include ../string dummy openal sdl'
|
|
defs = ''
|
|
if env['WITH_BF_OPENAL']:
|
|
sources += env.Glob('openal/*.cpp') + env.Glob('sdl/*.cpp')
|
|
incs += ' ' + env['BF_OPENAL_INC']
|
|
incs += ' ' + env['BF_SDL_INC']
|
|
defs = 'USE_OPENAL'
|
|
else:
|
|
defs = 'NO_SOUND'
|
|
|
|
if not env['WITH_BF_SDL']:
|
|
defs += ' DISABLE_SDL'
|
|
|
|
env.BlenderLib ('bf_soundsystem', sources, Split(incs), Split(defs), libtype=['intern','player'], priority = [25,135] )
|