mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-27 00:05:34 +01:00
14 lines
221 B
Python
14 lines
221 B
Python
|
# -*- python -*-
|
||
|
|
||
|
Import('env')
|
||
|
|
||
|
files = [
|
||
|
'CodeView.cpp',
|
||
|
'DebuggerUIUtil.cpp',
|
||
|
]
|
||
|
|
||
|
acenv = env.Clone()
|
||
|
acenv.Append(CXXFLAGS = [ '-fPIC' ])
|
||
|
|
||
|
acenv.StaticLibrary(env['local_libs'] + 'debugger_ui_util', files)
|