2008-07-12 17:40:22 +00:00
|
|
|
Import('env')
|
|
|
|
|
|
|
|
files = ["LogWindow.cpp",
|
2008-07-22 11:16:45 +00:00
|
|
|
"BreakPointDlg.cpp",
|
2008-07-20 11:02:41 +00:00
|
|
|
"BreakpointView.cpp",
|
|
|
|
"CodeView.cpp",
|
|
|
|
"BreakpointWindow.cpp",
|
2008-07-12 17:40:22 +00:00
|
|
|
"CodeWindow.cpp",
|
|
|
|
"CodeView.cpp",
|
|
|
|
"Debugger.cpp",
|
2008-07-22 11:16:45 +00:00
|
|
|
"MemoryCheckDlg.cpp",
|
|
|
|
"MemoryView.cpp",
|
|
|
|
"MemoryWindow.cpp",
|
2008-07-12 17:40:22 +00:00
|
|
|
"RegisterWindow.cpp",
|
|
|
|
"RegisterView.cpp",
|
2008-08-21 17:49:06 +00:00
|
|
|
"JitWindow.cpp",
|
2008-07-12 17:40:22 +00:00
|
|
|
]
|
2008-08-26 22:28:42 +00:00
|
|
|
wxenv = env.Copy()
|
|
|
|
wxenv.Append(
|
|
|
|
CXXFLAGS = ' ' + ' '.join([
|
|
|
|
'`wx-config --cppflags`',
|
|
|
|
'-DUSE_XPM_BITMAPS',
|
|
|
|
'-DwxNEEDS_CHARPP'
|
|
|
|
]),
|
|
|
|
LINKFLAGS = ' ' + ' '.join([
|
|
|
|
'-L/usr/local/lib',
|
|
|
|
'-pthread',
|
|
|
|
'`wx-config --libs --debug`'
|
|
|
|
])
|
|
|
|
)
|
|
|
|
wxenv.StaticLibrary("debwx", files, LIBS = [ "common" ])
|