From 2c092a882efdfdacc962d0539ee1bfa650464af6 Mon Sep 17 00:00:00 2001 From: Brad Parker Date: Thu, 3 Aug 2017 10:46:58 -0400 Subject: [PATCH] Set buildbot dir for MSVC 2005 RetroArch build to MSVC 2005 cores --- config.def.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config.def.h b/config.def.h index 1b2c7a6f87..86d2475636 100644 --- a/config.def.h +++ b/config.def.h @@ -610,6 +610,12 @@ static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/window #elif defined(__i386__) || defined(__i486__) || defined(__i686__) || defined(_M_IX86) || defined(_M_IA64) static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/windows-msvc2010/x86/latest/"; #endif +#elif _MSC_VER == 1400 +#if defined(__x86_64__) +static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/windows-msvc2005/x86_64/latest/"; +#elif defined(__i386__) || defined(__i486__) || defined(__i686__) || defined(_M_IX86) || defined(_M_IA64) +static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/windows-msvc2005/x86/latest/"; +#endif #else #if defined(__x86_64__) static char buildbot_server_url[] = "http://buildbot.libretro.com/nightly/windows/x86_64/latest/";