2009-06-21 08:39:21 +00:00
|
|
|
# -*- 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',
|
|
|
|
]
|
2009-06-21 08:39:21 +00:00
|
|
|
|
2010-06-10 14:18:21 +00:00
|
|
|
env.StaticLibrary(env['local_libs'] + 'debugger_ui_util', files)
|