summaryrefslogtreecommitdiff
path: root/Source/Core/DebuggerWX/src/SConscript
blob: 522e36bbf4fd5817ab4b07925c0cfe97f6038e75 (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
31
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([
		env['WXCPPFLAGS'],
		'-DUSE_XPM_BITMAPS',
		'-DwxNEEDS_CHARPP'
		]),
	LINKFLAGS = ' ' + ' '.join([
		'-L/usr/local/lib',
		'-pthread',
		env['WXLIBFLAGS'],
		])
	)
wxenv.StaticLibrary("debwx", files, LIBS = [ "common" ])