mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
Small fixup
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2806 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -3,15 +3,19 @@
|
||||
Import('env')
|
||||
|
||||
files = [
|
||||
'AOSoundStream.cpp',
|
||||
'aldlist.cpp',
|
||||
'AudioCommonConfig.cpp',
|
||||
'OpenALStream.cpp',
|
||||
'WaveFile.cpp',
|
||||
'Mixer.cpp',
|
||||
'AudioCommon.cpp',
|
||||
]
|
||||
|
||||
env_audiocommon = env.Clone()
|
||||
env_audiocommon.Append(CXXFLAGS = [ '-fPIC' ])
|
||||
env_audiocommon.StaticLibrary('audiocommon', files)
|
||||
acenv = env.Clone()
|
||||
acenv.Append(CXXFLAGS = [ '-fPIC' ])
|
||||
|
||||
if acenv['HAVE_OPENAL']:
|
||||
files += [ 'OpenALStream.cpp', 'aldlist.cpp' ]
|
||||
|
||||
if acenv['HAVE_AO']:
|
||||
files += [ 'AOSoundStream.cpp' ]
|
||||
|
||||
acenv.StaticLibrary('audiocommon', files)
|
||||
|
Reference in New Issue
Block a user