mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-02 15:45:58 +00:00
Intel Macs: Provides fixes to help compile on Macs, thanks to tmator
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@104 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
19f3c986ff
commit
92c0a4c370
4 changed files with 34 additions and 4 deletions
|
@ -1,4 +1,5 @@
|
|||
Import('env')
|
||||
import sys
|
||||
|
||||
files = ["BootManager.cpp",
|
||||
"Config.cpp",
|
||||
|
@ -13,7 +14,12 @@ files = ["BootManager.cpp",
|
|||
"PluginOptions.cpp",
|
||||
"stdafx.cpp",
|
||||
]
|
||||
|
||||
|
||||
wxenv = env.Copy(CXXFLAGS = "`wx-config --cppflags` -DUSE_XPM_BITMAPS -DwxNEEDS_CHARPP",
|
||||
LINKFLAGS = "-L/usr/local/lib -pthread `wx-config --libs`")
|
||||
|
||||
wxenv.Program("../../../../Binary/linux/Dolphin", files, LIBS = ["debwx", "discio", "core", "bdisasm", "videocommon", "common"])
|
||||
|
||||
if sys.platform == 'darwin':
|
||||
wxenv.Program("../../../../Binary/mac/Dolphin.app/Contents/MacOS/Dolphin", files, LIBS = ["debwx", "discio", "core", "bdisasm", "videocommon", "common" , "z"])
|
||||
else:
|
||||
wxenv.Program("../../../../Binary/linux/Dolphin", files, LIBS = ["debwx", "discio", "core", "bdisasm", "videocommon", "common"])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue