diff options
| author | j4ck.fr0st <j4ck.fr0st@gmail.com> | 2010-01-19 20:21:17 +0000 |
|---|---|---|
| committer | j4ck.fr0st <j4ck.fr0st@gmail.com> | 2010-01-19 20:21:17 +0000 |
| commit | 832a616cb0b5287ae030d4834fdd8e705a897a9f (patch) | |
| tree | 4ec92b79c8d7aa6a82a787ed55a5ff4493f634fc /SConstruct | |
| parent | 1c09cba69a5dea2df14184b97af9e2fe447c8055 (diff) | |
removed now obsolete build configurations Release_JITIL from vcproj and jittest from scons
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4896 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'SConstruct')
| -rw-r--r-- | SConstruct | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/SConstruct b/SConstruct index 9bc0db6d54..34bb3d892f 100644 --- a/SConstruct +++ b/SConstruct @@ -109,9 +109,8 @@ vars.AddVariables( BoolVariable('openal', 'Build with OpenAL', False), BoolVariable('noao', 'Build without AO', False), BoolVariable('wxgl', 'Set For Building with WX GL libs (WIP)', False), - BoolVariable('jittest', 'temp don\'t use (WIP)', False), BoolVariable('opencl', 'Build with OpenCL', False), - BoolVariable('nojit', 'Remove entire jit cores', False), + BoolVariable('nojit', 'Remove entire jit cores', False), EnumVariable('flavor', 'Choose a build flavor', 'release', allowed_values = ('release', 'devel', 'debug', 'fastlog', 'prof'), ignorecase = 2 @@ -309,15 +308,10 @@ if env['nowx']: else: env['HAVE_WX'] = conf.CheckWXConfig('2.8', wxmods, 0) -env['JITTEST'] = 0 -if env['jittest']: - env['JITTEST'] = 1 - env['NOJIT'] = 0 if env['nojit']: env['NOJIT'] = 1 -conf.Define('JITTEST', env['JITTEST']) conf.Define('NOJIT', env['NOJIT']) # Creating config.h defines |
