diff options
Diffstat (limited to 'Source/Core/DebuggerWX/src/SConscript')
| -rw-r--r-- | Source/Core/DebuggerWX/src/SConscript | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/Source/Core/DebuggerWX/src/SConscript b/Source/Core/DebuggerWX/src/SConscript index 139afb0a93..27935d8cc4 100644 --- a/Source/Core/DebuggerWX/src/SConscript +++ b/Source/Core/DebuggerWX/src/SConscript @@ -15,7 +15,17 @@ files = ["LogWindow.cpp", "RegisterView.cpp", "JitWindow.cpp", ] -wxenv = env.Copy(CXXFLAGS = "`wx-config --cppflags` -DUSE_XPM_BITMAPS -DwxNEEDS_CHARPP", - LINKFLAGS = "-L/usr/local/lib -pthread `wx-config --libs --debug`") - -wxenv.StaticLibrary("debwx", files, LIBS = ["common"]) +wxenv = env.Copy() +wxenv.Append( + CXXFLAGS = ' ' + ' '.join([ + '`wx-config --cppflags`', + '-DUSE_XPM_BITMAPS', + '-DwxNEEDS_CHARPP' + ]), + LINKFLAGS = ' ' + ' '.join([ + '-L/usr/local/lib', + '-pthread', + '`wx-config --libs --debug`' + ]) + ) +wxenv.StaticLibrary("debwx", files, LIBS = [ "common" ]) |
