diff options
Diffstat (limited to 'Source/Core/DebuggerWX/src/SConscript')
| -rw-r--r-- | Source/Core/DebuggerWX/src/SConscript | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/Source/Core/DebuggerWX/src/SConscript b/Source/Core/DebuggerWX/src/SConscript index 522e36bbf4..f5a0a2b9c8 100644 --- a/Source/Core/DebuggerWX/src/SConscript +++ b/Source/Core/DebuggerWX/src/SConscript @@ -17,15 +17,14 @@ files = ["LogWindow.cpp", ] wxenv = env.Clone() wxenv.Append( - CXXFLAGS = ' ' + ' '.join([ - env['WXCPPFLAGS'], + CXXFLAGS = [ '-DUSE_XPM_BITMAPS', '-DwxNEEDS_CHARPP' - ]), - LINKFLAGS = ' ' + ' '.join([ + ], + LINKFLAGS = [ '-L/usr/local/lib', '-pthread', - env['WXLIBFLAGS'], - ]) + ] ) + wxenv.StaticLibrary("debwx", files, LIBS = [ "common" ]) |
