Files
dolphin/Source/Core/DebuggerUICommon/Src/SConscript
T

18 lines
265 B
Python
Raw Normal View History

# -*- python -*-
Import('env')
2009-08-01 18:31:25 +00:00
if not env['HAVE_WX']:
Return()
2009-08-02 08:00:30 +00:00
files = [
2009-08-01 18:31:25 +00:00
'CodeView.cpp',
'DebuggerUIUtil.cpp',
'MemoryView.cpp',
]
acenv = env.Clone()
acenv.Append(CXXFLAGS = [ '-fPIC' ])
acenv.StaticLibrary(env['local_libs'] + 'debugger_ui_util', files)