Files
dolphin/Source/Core/AudioCommon/Src/SConscript
T

29 lines
553 B
Python
Raw Normal View History

2009-03-23 20:55:32 +00:00
# -*- python -*-
Import('env')
import sys
2009-03-23 20:55:32 +00:00
files = [
'AudioCommonConfig.cpp',
'WaveFile.cpp',
'Mixer.cpp',
'AudioCommon.cpp',
2009-03-23 20:55:32 +00:00
]
2010-06-10 14:18:21 +00:00
if env['HAVE_OPENAL']:
2009-03-30 17:45:35 +00:00
files += [ 'OpenALStream.cpp', 'aldlist.cpp' ]
2010-06-10 14:18:21 +00:00
if env['HAVE_AO']:
2009-03-30 17:45:35 +00:00
files += [ 'AOSoundStream.cpp' ]
2010-06-10 14:18:21 +00:00
if env['HAVE_ALSA']:
2009-09-15 10:47:19 +00:00
files += [ 'AlsaSoundStream.cpp' ]
2010-06-10 14:18:21 +00:00
if env['HAVE_PULSEAUDIO']:
files += [ 'PulseAudioStream.cpp' ]
if sys.platform == 'darwin':
files += [ 'CoreAudioSoundStream.cpp' ]
2009-03-30 17:45:35 +00:00
2010-06-10 14:18:21 +00:00
env.StaticLibrary(env['local_libs'] + 'audiocommon', files)