mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-26 15:49:50 -06:00

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@30 8ced0084-cf51-0410-be5f-012b33b47a6e
17 lines
534 B
Python
17 lines
534 B
Python
Import('env')
|
|
|
|
files = ["LogWindow.cpp",
|
|
"BreakpointView.cpp",
|
|
"CodeView.cpp",
|
|
"BreakpointWindow.cpp",
|
|
"CodeWindow.cpp",
|
|
"CodeView.cpp",
|
|
"Debugger.cpp",
|
|
"RegisterWindow.cpp",
|
|
"RegisterView.cpp",
|
|
]
|
|
wxenv = env.Copy(CXXFLAGS = "`wx-config --cppflags --debug` -DUSE_XPM_BITMAPS -DwxNEEDS_CHARPP",
|
|
LINKFLAGS = "-L/usr/local/lib -pthread `wx-config --libs --debug`")
|
|
|
|
wxenv.StaticLibrary("debwx", files, LIBS = ["common"])
|