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

38 lines
600 B
Python
Raw Normal View History

# -*- python -*-
2008-09-21 19:54:29 +00:00
2008-07-12 17:40:22 +00:00
Import('env')
2008-12-05 13:46:19 +00:00
if not env['HAVE_WX']:
Return()
files = [
"BreakPointDlg.cpp",
"BreakpointView.cpp",
"CodeView.cpp",
"BreakpointWindow.cpp",
"CodeWindow.cpp",
"CodeWindowSJP.cpp",
"CodeView.cpp",
"MemoryCheckDlg.cpp",
"MemoryView.cpp",
"MemoryWindow.cpp",
"RegisterWindow.cpp",
"RegisterView.cpp",
"JitWindow.cpp",
]
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)