summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorMaarten ter Huurne <maarten@treewalker.org>2008-09-22 23:53:15 +0000
committerMaarten ter Huurne <maarten@treewalker.org>2008-09-22 23:53:15 +0000
commitef1aba784efcc85edaebdbc2079e72f8fb81e7d5 (patch)
treebebbfaec8971b71c97caaa1acc0b5ac35fd5f27f /Source
parent31f1fabbac83b551c528e92156c2c903c96c7a91 (diff)
Use Append() to append to LIBS, like in the other SConscripts.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@623 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/DolphinWX/Src/SConscript9
1 files changed, 5 insertions, 4 deletions
diff --git a/Source/Core/DolphinWX/Src/SConscript b/Source/Core/DolphinWX/Src/SConscript
index d5ff36c5cf..191578d5a6 100644
--- a/Source/Core/DolphinWX/Src/SConscript
+++ b/Source/Core/DolphinWX/Src/SConscript
@@ -25,13 +25,14 @@ libs = [
wxenv = env.Clone()
wxenv.Append(
- CPPDEFINES = [
+ CPPDEFINES = [
'USE_XPM_BITMAPS',
'wxNEEDS_CHARPP',
],
LINKFLAGS = [
'-pthread',
- ]
+ ],
+ LIBS = libs
)
if sys.platform == 'darwin':
@@ -63,5 +64,5 @@ else:
exeNoGUI = '../../../../Binary/linux/DolphinNoGUI'
objects = [ wxenv.Object(srcFile) for srcFile in files ]
-wxenv.Program(exeGUI, objects + [ 'Main.cpp' ], LIBS=wxenv['LIBS']+libs)
-wxenv.Program(exeNoGUI, objects + [ 'MainNoGUI.cpp' ], LIBS=wxenv['LIBS']+libs)
+wxenv.Program(exeGUI, objects + [ 'Main.cpp' ])
+wxenv.Program(exeNoGUI, objects + [ 'MainNoGUI.cpp' ])