2009-03-23 20:55:32 +00:00
|
|
|
# -*- python -*-
|
|
|
|
|
|
|
|
Import('env')
|
|
|
|
|
|
|
|
files = [
|
2009-03-25 19:03:32 +00:00
|
|
|
'AOSoundStream.cpp',
|
2009-03-28 17:18:34 +00:00
|
|
|
'OpenALStream.cpp',
|
2009-03-25 19:03:32 +00:00
|
|
|
'WaveFile.cpp',
|
2009-03-26 09:29:14 +00:00
|
|
|
'Mixer.cpp',
|
|
|
|
'AudioCommon.cpp',
|
2009-03-23 20:55:32 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
env_audiocommon = env.Clone()
|
|
|
|
env_audiocommon.Append(CXXFLAGS = [ '-fPIC' ])
|
|
|
|
env_audiocommon.StaticLibrary('audiocommon', files)
|