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

35 lines
646 B
Python
Raw Normal View History

2008-09-21 19:54:29 +00:00
# -*- python -*-
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
]
wxenv = env.Clone()
wxenv.Append(
2008-09-21 19:54:29 +00:00
CPPDEFINES = [
'USE_XPM_BITMAPS',
'wxNEEDS_CHARPP'
2008-09-20 22:06:22 +00:00
],
LINKFLAGS = [
'-pthread',
2008-09-20 22:06:22 +00:00
]
)
2008-09-21 19:54:29 +00:00
libs = [
'common'
]
2008-09-20 22:06:22 +00:00
2008-09-21 19:54:29 +00:00
wxenv.StaticLibrary("debwx", files, LIBS = libs)