Allow changing the fullscreen resolution on OS X.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7011 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Soren Jorvang
2011-01-31 07:38:36 +00:00
parent 0e91e5b238
commit e0e4a3ae02
4 changed files with 61 additions and 41 deletions

View File

@ -6,10 +6,8 @@ import sys
from SconsTests import utils
files = ['BootManager.cpp']
ldflags = [ ]
libs = [ ]
ldflags = []
libs = []
if not env['HAVE_WX']:
files += ['MainNoGUI.cpp']
@ -51,11 +49,11 @@ else:
libs += ['debwx', 'debugger_ui_util', 'dolphinwx']
libs += ['core', 'discio', 'plugin_videoogl'] # 'plugin_videosoftware'
libs += ['core', 'common', 'discio', 'plugin_videoogl'] # 'plugin_videosoftware'
if env['HAVE_WX']:
libs += ['videouicommon']
libs += ['audiocommon', 'common', 'inputcommon', 'videocommon']
libs += ['GLEW', 'SOIL', 'bdisasm', 'lua', 'lzo2', 'sfml-network', 'z']
libs += ['audiocommon', 'inputcommon', 'videocommon']
libs += ['GLEW', 'SOIL', 'bdisasm', 'lua', 'lzo2', 'sfml-network', 'z']
if sys.platform == 'win32':
files += [ "stdafx.cpp" ]
@ -71,7 +69,6 @@ elif sys.platform == 'darwin':
libs += [ 'iconv' ]
exe += 'NoGUI'
env.Install('#' + env['prefix'] + '/Dolphin.app/Contents/' +
'Frameworks/Cg.framework', source = [
'#Externals/Cg/Cg.framework/Cg',