By JP's request

Build directory is now per flavour
Debug build will add -debug i.e. Binary/i686-debug/Dolphin



git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1705 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee 2008-12-28 17:56:59 +00:00
parent f514f161b5
commit de7abc6bd0
1 changed files with 6 additions and 2 deletions

View File

@ -184,7 +184,7 @@ tests = {'CheckWXConfig' : wxconfig.CheckWXConfig,
'CheckPKG' : utils.CheckPKG,
'CheckSDL' : utils.CheckSDL}
build_dir = os.path.join('Build', platform.system() + '-' + platform.machine() + os.sep)
build_dir = os.path.join('Build', platform.system() + '-' + platform.machine() + '-' + env['flavor'] + os.sep)
VariantDir(build_dir, '.', duplicate=0)
conf = env.Configure(custom_tests = tests,
@ -270,8 +270,12 @@ env.AddMethod(utils.filterWarnings)
env['base_dir'] = os.getcwd()+ '/';
# install paths
extra=''
if env['flavor'] == 'debug':
extra = '-debug'
# TODO: support global install
env['prefix'] = os.path.join(env['base_dir'] + 'Binary', platform.system() + '-' + platform.machine() + '/')
env['prefix'] = os.path.join(env['base_dir'] + 'Binary', platform.system() + '-' + platform.machine() + extra +os.sep)
#TODO add lib
env['plugin_dir'] = env['prefix'] + 'Plugins/'
#TODO add bin