mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-08 09:40:29 +00:00
12 lines
204 B
Python
12 lines
204 B
Python
|
# -*- python -*-
|
||
|
|
||
|
Import('env')
|
||
|
|
||
|
files = [
|
||
|
'AOSoundStream.cpp',
|
||
|
]
|
||
|
|
||
|
env_audiocommon = env.Clone()
|
||
|
env_audiocommon.Append(CXXFLAGS = [ '-fPIC' ])
|
||
|
env_audiocommon.StaticLibrary('audiocommon', files)
|