mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
change src to Src
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@604 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
1ecfba6692
commit
3a130d4263
28 changed files with 2 additions and 2 deletions
34
Source/Core/DebuggerWX/Src/SConscript
Normal file
34
Source/Core/DebuggerWX/Src/SConscript
Normal file
|
@ -0,0 +1,34 @@
|
|||
# -*- python -*-
|
||||
|
||||
Import('env')
|
||||
|
||||
files = ["LogWindow.cpp",
|
||||
"BreakPointDlg.cpp",
|
||||
"BreakpointView.cpp",
|
||||
"CodeView.cpp",
|
||||
"BreakpointWindow.cpp",
|
||||
"CodeWindow.cpp",
|
||||
"CodeView.cpp",
|
||||
"Debugger.cpp",
|
||||
"MemoryCheckDlg.cpp",
|
||||
"MemoryView.cpp",
|
||||
"MemoryWindow.cpp",
|
||||
"RegisterWindow.cpp",
|
||||
"RegisterView.cpp",
|
||||
"JitWindow.cpp",
|
||||
]
|
||||
wxenv = env.Clone()
|
||||
wxenv.Append(
|
||||
CPPDEFINES = [
|
||||
'USE_XPM_BITMAPS',
|
||||
'wxNEEDS_CHARPP'
|
||||
],
|
||||
LINKFLAGS = [
|
||||
'-pthread',
|
||||
]
|
||||
)
|
||||
libs = [
|
||||
'common'
|
||||
]
|
||||
|
||||
wxenv.StaticLibrary("debwx", files, LIBS = libs)
|
Loading…
Add table
Add a link
Reference in a new issue