mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-30 13:58:03 +03:00
12 lines
204 B
Text
12 lines
204 B
Text
![]() |
# -*- python -*-
|
||
|
|
||
|
Import('env')
|
||
|
|
||
|
files = [
|
||
|
'AOSoundStream.cpp',
|
||
|
]
|
||
|
|
||
|
env_audiocommon = env.Clone()
|
||
|
env_audiocommon.Append(CXXFLAGS = [ '-fPIC' ])
|
||
|
env_audiocommon.StaticLibrary('audiocommon', files)
|