summaryrefslogtreecommitdiff
path: root/Source/Core/DebuggerWX/src/SConscript
diff options
context:
space:
mode:
authornakeee <nakeee@gmail.com>2008-09-20 22:06:22 +0000
committernakeee <nakeee@gmail.com>2008-09-20 22:06:22 +0000
commit3e2419776f2be1f0eda8e019f122a7fb5edc6f3e (patch)
tree67d43a452b83bd39e28cf1906f85c8b55dcdee9d /Source/Core/DebuggerWX/src/SConscript
parentd9e4b55f15d709fb6c0184e88879621a508d1183 (diff)
fixed scons=parsing
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@591 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DebuggerWX/src/SConscript')
-rw-r--r--Source/Core/DebuggerWX/src/SConscript11
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" ])