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-07-23 18:53:54 +00:00
|
|
|
wxenv = env.Copy(CXXFLAGS = "`wx-config --cppflags` -DUSE_XPM_BITMAPS -DwxNEEDS_CHARPP",
|
2008-07-12 17:40:22 +00:00
|
|
|
LINKFLAGS = "-L/usr/local/lib -pthread `wx-config --libs --debug`")
|
|
|
|
|
|
|
|
wxenv.StaticLibrary("debwx", files, LIBS = ["common"])
|