dolphin/Source/Core/DebuggerWX/Src/SConscript
John Peterson a254f76d32 Files: Renamed a code file
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4085 8ced0084-cf51-0410-be5f-012b33b47a6e
2009-08-27 17:19:58 +00:00

35 lines
585 B
Python

# -*- python -*-
Import('env')
if not env['HAVE_WX']:
Return()
files = [
"BreakpointDlg.cpp",
"BreakpointView.cpp",
"BreakpointWindow.cpp",
"CodeWindow.cpp",
"CodeWindowFunctions.cpp",
"MemoryCheckDlg.cpp",
"MemoryWindow.cpp",
"RegisterWindow.cpp",
"RegisterView.cpp",
"JitWindow.cpp",
]
wxenv = env.Clone()
wxenv.Append(
CPPDEFINES = [
'USE_XPM_BITMAPS',
'wxNEEDS_CHARPP'
],
LINKFLAGS = [
'-pthread',
]
)
libs = [
'common',
'debugger_ui_util'
]
wxenv.StaticLibrary(env['local_libs'] + "debwx", files, LIBS = libs)