Files
dolphin/Source/Core/DebuggerWX/src/SConscript
T

22 lines
669 B
Python
Raw Normal View History

2008-07-12 17:40:22 +00:00
Import('env')
files = ["LogWindow.cpp",
"BreakPointDlg.cpp",
"BreakpointView.cpp",
"CodeView.cpp",
"BreakpointWindow.cpp",
2008-07-12 17:40:22 +00:00
"CodeWindow.cpp",
"CodeView.cpp",
"Debugger.cpp",
"MemoryCheckDlg.cpp",
"MemoryView.cpp",
"MemoryWindow.cpp",
2008-07-12 17:40:22 +00:00
"RegisterWindow.cpp",
"RegisterView.cpp",
"JitWindow.cpp",
2008-07-12 17:40:22 +00:00
]
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"])