summaryrefslogtreecommitdiff
path: root/Source/Core/DebuggerWX/src
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/DebuggerWX/src')
-rw-r--r--Source/Core/DebuggerWX/src/SConscript14
1 files changed, 9 insertions, 5 deletions
diff --git a/Source/Core/DebuggerWX/src/SConscript b/Source/Core/DebuggerWX/src/SConscript
index f5a0a2b9c8..005b8f4b65 100644
--- a/Source/Core/DebuggerWX/src/SConscript
+++ b/Source/Core/DebuggerWX/src/SConscript
@@ -1,3 +1,5 @@
+# -*- python -*-
+
Import('env')
files = ["LogWindow.cpp",
@@ -17,14 +19,16 @@ files = ["LogWindow.cpp",
]
wxenv = env.Clone()
wxenv.Append(
- CXXFLAGS = [
- '-DUSE_XPM_BITMAPS',
- '-DwxNEEDS_CHARPP'
+ CPPDEFINES = [
+ 'USE_XPM_BITMAPS',
+ 'wxNEEDS_CHARPP'
],
LINKFLAGS = [
- '-L/usr/local/lib',
'-pthread',
]
)
+libs = [
+ 'common'
+]
-wxenv.StaticLibrary("debwx", files, LIBS = [ "common" ])
+wxenv.StaticLibrary("debwx", files, LIBS = libs)