summaryrefslogtreecommitdiff
path: root/Source/Core/DebuggerWX/src
diff options
context:
space:
mode:
authornakeee <nakeee@gmail.com>2008-09-21 19:54:29 +0000
committernakeee <nakeee@gmail.com>2008-09-21 19:54:29 +0000
commite0291e735cd44972603528bf68b690d52bb1dcc3 (patch)
tree84eeaca3d0a273b4f28a3790eea55bbbf195630f /Source/Core/DebuggerWX/src
parent5c6407b8059b3d4d70184046ef9b3e55112ec37d (diff)
cleaned up SConscripts
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@602 8ced0084-cf51-0410-be5f-012b33b47a6e
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)