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

29 lines
675 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
]
if sys.platform == 'win32':
files += [ 'DSoundStream.cpp' ]
if sys.platform == 'darwin':
files += [ 'CoreAudioSoundStream.cpp' ]
else:
if env['HAVE_ALSA']:
files += [ 'AlsaSoundStream.cpp' ]
if env['HAVE_AO']:
files += [ 'AOSoundStream.cpp' ]
2010-07-10 21:17:08 +00:00
if env['HAVE_OPENAL'] or sys.platform == 'win32':
files += [ 'OpenALStream.cpp', 'aldlist.cpp' ]
if env['HAVE_PULSEAUDIO']:
files += [ 'PulseAudioStream.cpp' ]
2009-03-30 17:45:35 +00:00
2010-06-10 14:18:21 +00:00
env.StaticLibrary(env['local_libs'] + 'audiocommon', files)