mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 15:19:42 -06:00
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:
@ -173,6 +173,9 @@ tests = {'CheckWXConfig' : wxconfig.CheckWXConfig,
|
|||||||
'CheckPKG' : utils.CheckPKG,
|
'CheckPKG' : utils.CheckPKG,
|
||||||
'CheckSDL' : utils.CheckSDL}
|
'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,
|
conf = env.Configure(custom_tests = tests,
|
||||||
config_h="Source/Core/Common/Src/Config.h")
|
config_h="Source/Core/Common/Src/Config.h")
|
||||||
|
|
||||||
@ -274,6 +277,7 @@ Export('env')
|
|||||||
for subdir in dirs:
|
for subdir in dirs:
|
||||||
SConscript(
|
SConscript(
|
||||||
subdir + os.sep + 'SConscript',
|
subdir + os.sep + 'SConscript',
|
||||||
|
variant_dir = build_dir + subdir + os.sep,
|
||||||
duplicate=0
|
duplicate=0
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user