object files now go into Build/system-arch
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1496 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
aa9b2e1073
commit
8b24a9b498
|
@ -173,6 +173,9 @@ tests = {'CheckWXConfig' : wxconfig.CheckWXConfig,
|
|||
'CheckPKG' : utils.CheckPKG,
|
||||
'CheckSDL' : utils.CheckSDL}
|
||||
|
||||
build_dir = os.path.join('Build', platform.system() + '-' + platform.machine() + os.sep)
|
||||
VariantDir(build_dir, '.', duplicate=0)
|
||||
|
||||
conf = env.Configure(custom_tests = tests,
|
||||
config_h="Source/Core/Common/Src/Config.h")
|
||||
|
||||
|
@ -274,7 +277,8 @@ Export('env')
|
|||
for subdir in dirs:
|
||||
SConscript(
|
||||
subdir + os.sep + 'SConscript',
|
||||
duplicate = 0
|
||||
variant_dir = build_dir + subdir + os.sep,
|
||||
duplicate=0
|
||||
)
|
||||
|
||||
# Data install
|
||||
|
|
Loading…
Reference in New Issue