summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/src/SConscript
diff options
context:
space:
mode:
authorMaarten ter Huurne <maarten@treewalker.org>2008-08-23 08:42:52 +0000
committerMaarten ter Huurne <maarten@treewalker.org>2008-08-23 08:42:52 +0000
commit0becaa3223e57557b9d53bf1564d8da9eff0a64c (patch)
treef00bfec9a338c751df72da687e7d8af9bb9b77e4 /Source/Core/DolphinWX/src/SConscript
parent19bcb6a21c9e537ce3e6c547655a6741b5022b77 (diff)
Make sure SDL can hijack main() so it can do its initialisation. Only implemented for non-GUI executable so far.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@278 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DolphinWX/src/SConscript')
-rw-r--r--Source/Core/DolphinWX/src/SConscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/DolphinWX/src/SConscript b/Source/Core/DolphinWX/src/SConscript
index 4f5dabf0b9..e029e5aaee 100644
--- a/Source/Core/DolphinWX/src/SConscript
+++ b/Source/Core/DolphinWX/src/SConscript
@@ -18,8 +18,8 @@ files = ["BootManager.cpp",
]
-wxenv = env.Copy(CXXFLAGS = "`wx-config --cppflags` -DUSE_XPM_BITMAPS -DwxNEEDS_CHARPP",
- LINKFLAGS = "-L/usr/local/lib -pthread `wx-config --libs`")
+wxenv = env.Copy(CXXFLAGS = "`wx-config --cppflags` -DUSE_XPM_BITMAPS -DwxNEEDS_CHARPP `sdl-config --cflags`",
+ LINKFLAGS = "-L/usr/local/lib -pthread `wx-config --libs` `sdl-config --libs`")
if sys.platform == 'darwin':
icon = 'Dolphin'