2009-01-15 06:48:15 +00:00
|
|
|
# -*- python -*-
|
2008-09-21 19:54:29 +00:00
|
|
|
|
2008-07-12 17:40:22 +00:00
|
|
|
Import('env')
|
|
|
|
|
2008-12-05 13:46:19 +00:00
|
|
|
if not env['HAVE_WX']:
|
2010-07-19 03:42:37 +00:00
|
|
|
Return()
|
2008-12-05 13:46:19 +00:00
|
|
|
|
2009-03-18 17:17:58 +00:00
|
|
|
files = [
|
2010-07-19 03:42:37 +00:00
|
|
|
"BreakpointDlg.cpp",
|
|
|
|
"BreakpointView.cpp",
|
|
|
|
"BreakpointWindow.cpp",
|
|
|
|
"CodeWindow.cpp",
|
|
|
|
"CodeWindowFunctions.cpp",
|
|
|
|
"MemoryCheckDlg.cpp",
|
|
|
|
"MemoryWindow.cpp",
|
|
|
|
"RegisterWindow.cpp",
|
|
|
|
"RegisterView.cpp",
|
|
|
|
"JitWindow.cpp",
|
|
|
|
]
|
2010-06-10 14:18:21 +00:00
|
|
|
|
2008-09-21 19:54:29 +00:00
|
|
|
libs = [
|
2010-07-19 03:42:37 +00:00
|
|
|
'common',
|
|
|
|
'debugger_ui_util'
|
|
|
|
]
|
2008-09-20 22:06:22 +00:00
|
|
|
|
2010-07-17 21:12:24 +00:00
|
|
|
env.StaticLibrary(env['local_libs'] + "debwx", files, LIBS = libs)
|