Allow testing WIP JIT by using "scons jittest=1". Done by the request

of nakeee.  Hopefully this works the way I think it does.

And of course, use at your own risk...



git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1760 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
magumagu9
2009-01-04 09:12:12 +00:00
parent 412626c327
commit 94a51a7817
3 changed files with 46 additions and 16 deletions

View File

@ -99,6 +99,7 @@ vars.AddVariables(
BoolVariable('wxgl', 'Set For Building with WX GL libs (WIP)', False),
BoolVariable('sdlgl', 'Set For Building with SDL GL libs (WIP)', False),
BoolVariable('gltest', 'temp don\'t use (WIP)', False),
BoolVariable('jittest', 'temp don\'t use (WIP)', False),
EnumVariable('flavor', 'Choose a build flavor', 'release',
allowed_values = ('release', 'devel', 'debug', 'fastlog'),
ignorecase = 2
@ -240,6 +241,12 @@ if env['gltest']:
conf.Define('GLTEST', env['GLTEST'])
env['JITTEST'] = 0
if env['jittest']:
env['JITTEST'] = 1
conf.Define('JITTEST', env['JITTEST'])
# Gui less build
if env['nowx']:
env['HAVE_WX'] = 0;