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

37 lines
608 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 = [
2009-08-27 17:19:58 +00:00
"BreakpointDlg.cpp",
"BreakpointView.cpp",
"BreakpointWindow.cpp",
"CodeWindow.cpp",
2009-08-27 16:08:43 +00:00
"CodeWindowFunctions.cpp",
2009-09-03 20:00:09 +00:00
"FileMonitor.cpp",
"MemoryCheckDlg.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 = [
2009-06-21 09:35:31 +00:00
'common',
'debugger_ui_util'
2008-09-21 19:54:29 +00:00
]
2008-09-20 22:06:22 +00:00
2009-04-12 21:30:22 +00:00
wxenv.StaticLibrary(env['local_libs'] + "debwx", files, LIBS = libs)