mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-04 14:46:36 +02: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)
|