mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-30 22:08:04 +03:00
14 lines
445 B
Text
14 lines
445 B
Text
![]() |
Import('env')
|
||
|
|
||
|
files = ["LogWindow.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"])
|