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