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']:
|
|
|
|
Return()
|
|
|
|
|
2009-03-18 19:17:58 +02:00
|
|
|
files = [
|
2009-08-27 20:19:58 +03:00
|
|
|
"BreakpointDlg.cpp",
|
2009-03-18 19:17:58 +02:00
|
|
|
"BreakpointView.cpp",
|
|
|
|
"BreakpointWindow.cpp",
|
|
|
|
"CodeWindow.cpp",
|
2009-08-27 19:08:43 +03:00
|
|
|
"CodeWindowFunctions.cpp",
|
2009-03-18 19:17:58 +02:00
|
|
|
"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 = [
|
2009-06-21 12:35:31 +03:00
|
|
|
'common',
|
2009-09-04 14:34:21 +03:00
|
|
|
'debugger_ui_util'
|
2008-09-21 22:54:29 +03:00
|
|
|
]
|
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)
|