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

27 lines
415 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()
2008-12-05 13:46:19 +00:00
files = [
"BreakpointDlg.cpp",
"BreakpointView.cpp",
"BreakpointWindow.cpp",
"CodeWindow.cpp",
"CodeWindowFunctions.cpp",
"MemoryCheckDlg.cpp",
"MemoryWindow.cpp",
"RegisterWindow.cpp",
"RegisterView.cpp",
"JitWindow.cpp",
]
2010-06-10 14:18:21 +00:00
2008-09-21 19:54:29 +00:00
libs = [
'common',
'debugger_ui_util'
]
2008-09-20 22:06:22 +00:00
env.StaticLibrary(env['local_libs'] + "debwx", files, LIBS = libs)