mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 15:19:42 -06:00
Made layout more consistent.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@628 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -94,8 +94,8 @@ vars.AddVariables(
|
|||||||
BoolVariable('nowx', 'Set For Building with no WX libs (WIP)', False),
|
BoolVariable('nowx', 'Set For Building with no WX libs (WIP)', False),
|
||||||
EnumVariable('flavor', 'Choose a build flavor', 'release',
|
EnumVariable('flavor', 'Choose a build flavor', 'release',
|
||||||
allowed_values = ('release', 'devel', 'debug'),
|
allowed_values = ('release', 'devel', 'debug'),
|
||||||
ignorecase=2)
|
ignorecase = 2
|
||||||
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
env = Environment(
|
env = Environment(
|
||||||
@ -166,7 +166,9 @@ if not env['nowx']:
|
|||||||
env['build_platform'] = env['PLATFORM']
|
env['build_platform'] = env['PLATFORM']
|
||||||
env['target_platform'] = env['PLATFORM']
|
env['target_platform'] = env['PLATFORM']
|
||||||
|
|
||||||
if not conf.CheckWXConfig('2.8', ['gl', 'adv', 'core', 'base'], env['debug']):
|
if not conf.CheckWXConfig(
|
||||||
|
'2.8', ['gl', 'adv', 'core', 'base'], env['debug']
|
||||||
|
):
|
||||||
print 'gui build requires wxwidgets >= 2.8'
|
print 'gui build requires wxwidgets >= 2.8'
|
||||||
Exit(1)
|
Exit(1)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user