fix osx wx29 build
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4389 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
f2e959fc6e
commit
d9066c728f
|
@ -288,7 +288,12 @@ else:
|
|||
env['HAVE_COCOA'] = 0
|
||||
|
||||
# handling wx flags CCFLAGS should be created before
|
||||
wxmods = ['aui', 'adv', 'core', 'base']
|
||||
if sys.platform == 'darwin':
|
||||
if env['osx'] == '64cocoa':
|
||||
wxmods = ['adv', 'core', 'base']
|
||||
else:
|
||||
wxmods = ['aui', 'adv', 'core', 'base']
|
||||
|
||||
env['USE_WX'] = 0
|
||||
if env['wxgl']:
|
||||
wxmods.append('gl')
|
||||
|
|
Loading…
Reference in New Issue