Added compiler detection for Visual Studio 2013 with Update-2.

This commit is contained in:
LoRd_MuldeR 2014-05-19 17:45:45 +02:00
parent e9ee5cfce4
commit 92c80cfd46
3 changed files with 7 additions and 5 deletions

View File

@ -18,7 +18,7 @@ a:visited { color: #0000EE; }
<h3>LameXP - Version History</h3><br>
<a name="4.10"></a>Changes between v4.09 and v4.10 [<font color="darkred">unreleased</font>]:<br><ul>
<li>Upgraded build environment to Microsoft Visual Studio 2013 with Update-1
<li>Upgraded build environment to Microsoft Visual Studio 2013 with Update-2
<li>Updated Qt runtime libraries to v4.8.6 (2014-04-25), compiled with MSVC 12.0
<li>Updated Opus libraries v1.1.x and Opus-Tools v0.1.8 to latest Git Master (2014-04-13)
<li>Updated MediaInfo to v0.7.69 (2014-04-26), compiled with ICL 14.0 and MSVC 12.0

View File

@ -33,9 +33,9 @@
#define VER_LAMEXP_MAJOR 4
#define VER_LAMEXP_MINOR_HI 1
#define VER_LAMEXP_MINOR_LO 0
#define VER_LAMEXP_TYPE Beta
#define VER_LAMEXP_PATCH 2
#define VER_LAMEXP_BUILD 1546
#define VER_LAMEXP_TYPE RC
#define VER_LAMEXP_PATCH 1
#define VER_LAMEXP_BUILD 1548
#define VER_LAMEXP_CONFG 1528
///////////////////////////////////////////////////////////////////////////////

View File

@ -106,8 +106,10 @@ static const unsigned int g_lamexp_toolver_coreaudio = VER_LAMEXP_TOOL_COREAUDIO
#if (_MSC_VER == 1800)
#if (_MSC_FULL_VER < 180021005)
static const char *g_lamexp_version_compiler = "MSVC 2013-Beta";
#elif (_MSC_FULL_VER == 180021005)
#elif (_MSC_FULL_VER < 180030501)
static const char *g_lamexp_version_compiler = "MSVC 2013";
#elif (_MSC_FULL_VER == 180030501)
static const char *g_lamexp_version_compiler = "MSVC 2013.2";
#else
#error Compiler version is not supported yet!
#endif