summaryrefslogtreecommitdiff
path: root/Source/Core/DebuggerWX/Src/SConscript
diff options
context:
space:
mode:
authornakeee <nakeee@gmail.com>2009-09-04 11:34:21 +0000
committernakeee <nakeee@gmail.com>2009-09-04 11:34:21 +0000
commite147b9eb91829453eb226992e3af936aaad3e691 (patch)
treedd73b2fbe57a2644397adbcd1f0f7a8fe191ae29 /Source/Core/DebuggerWX/Src/SConscript
parent7badedf0542cc29e2e57143c7effce75b4c34328 (diff)
Fixed up the filemon a bit, added isEnable function to the logmanager
and moved the FileMonitor from debug to discio to prevert cross dependencies git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4197 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DebuggerWX/Src/SConscript')
-rw-r--r--Source/Core/DebuggerWX/Src/SConscript3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/Core/DebuggerWX/Src/SConscript b/Source/Core/DebuggerWX/Src/SConscript
index 26f60a60df..28ecd04e9b 100644
--- a/Source/Core/DebuggerWX/Src/SConscript
+++ b/Source/Core/DebuggerWX/Src/SConscript
@@ -11,7 +11,6 @@ files = [
"BreakpointWindow.cpp",
"CodeWindow.cpp",
"CodeWindowFunctions.cpp",
- "FileMonitor.cpp",
"MemoryCheckDlg.cpp",
"MemoryWindow.cpp",
"RegisterWindow.cpp",
@@ -30,7 +29,7 @@ wxenv.Append(
)
libs = [
'common',
- 'debugger_ui_util'
+ 'debugger_ui_util'
]
wxenv.StaticLibrary(env['local_libs'] + "debwx", files, LIBS = libs)