mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
Small fixup
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2806 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
58a78cb2b5
commit
ce7ee4d4a3
3 changed files with 15 additions and 8 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue