summaryrefslogtreecommitdiff
path: root/Source/Core/AudioCommon/Src/SConscript
diff options
context:
space:
mode:
authornakeee <nakeee@gmail.com>2009-10-15 17:28:23 +0000
committernakeee <nakeee@gmail.com>2009-10-15 17:28:23 +0000
commit5834fa67107d95723bc6ca2cb237ae7a58062e1e (patch)
treeac491e4ae0bbd65a1c9d6c222046dc5697358d04 /Source/Core/AudioCommon/Src/SConscript
parenta05fbd852533e18b6809e8f6cc73c139a7ad7503 (diff)
Pulse audio empty struct implementation. Working on it though
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4428 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/AudioCommon/Src/SConscript')
-rw-r--r--Source/Core/AudioCommon/Src/SConscript3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/Core/AudioCommon/Src/SConscript b/Source/Core/AudioCommon/Src/SConscript
index 4adfaaf973..82f141e495 100644
--- a/Source/Core/AudioCommon/Src/SConscript
+++ b/Source/Core/AudioCommon/Src/SConscript
@@ -23,6 +23,9 @@ if acenv['HAVE_AO']:
if acenv['HAVE_ALSA']:
files += [ 'AlsaSoundStream.cpp' ]
+if acenv['HAVE_PULSEAUDIO']:
+ files += [ 'PulseAudioStream.cpp' ]
+
if sys.platform == 'darwin':
files += [ 'CoreAudioSoundStream.cpp' ]
acenv['FRAMEWORKS'] = [ 'CoreAudio' ]