summaryrefslogtreecommitdiff
path: root/Source/Core/DebuggerWX/src/SConscript
blob: 6827bf2ff7d7e299ae330f98f2445ff510132a6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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"])