mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-27 16:19:48 -06:00

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@542 8ced0084-cf51-0410-be5f-012b33b47a6e
32 lines
725 B
Python
32 lines
725 B
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(
|
|
CXXFLAGS = ' ' + ' '.join([
|
|
'`wx-config --cppflags`',
|
|
'-DUSE_XPM_BITMAPS',
|
|
'-DwxNEEDS_CHARPP'
|
|
]),
|
|
LINKFLAGS = ' ' + ' '.join([
|
|
'-L/usr/local/lib',
|
|
'-pthread',
|
|
'`wx-config --libs --debug`'
|
|
])
|
|
)
|
|
wxenv.StaticLibrary("debwx", files, LIBS = [ "common" ])
|