summaryrefslogtreecommitdiff
path: root/Source/Core/DebuggerWX/src/SConscript
blob: f5a0a2b9c851ccbe0d82af34bf1f29f84b40a037 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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 = [
		'-DUSE_XPM_BITMAPS',
		'-DwxNEEDS_CHARPP'
		],
	LINKFLAGS = [
		'-L/usr/local/lib',
		'-pthread',
		]
	)

wxenv.StaticLibrary("debwx", files, LIBS = [ "common" ])