diff options
author | 2016-08-27 11:15:38 +0200 | |
---|---|---|
committer | 2016-08-27 11:15:38 +0200 | |
commit | 62fe8b8980f5ae08dfdd74da4dca4c7cda38502c (patch) | |
tree | 705e35f687e4553dc1ac7eafd42cd8a0a6027cbe /scripts/toolchain.lua | |
parent | 0137c5b6a53c64d760b15e134095757a4e666c0b (diff) |
some C++14 features are not supported by VS2013. VS2015 is free for home use so no need for legacy support (nw)
Diffstat (limited to 'scripts/toolchain.lua')
-rw-r--r-- | scripts/toolchain.lua | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/scripts/toolchain.lua b/scripts/toolchain.lua index ff2f10ebbc2..fc19060a5c8 100644 --- a/scripts/toolchain.lua +++ b/scripts/toolchain.lua @@ -49,9 +49,7 @@ newoption { allowed = { { "intel-14", "Intel C++ Compiler XE 14.0" }, { "intel-15", "Intel C++ Compiler XE 15.0" }, - { "vs2013-clang", "Clang 3.6" }, { "vs2015-clang", "Clang 3.6" }, - { "vs2013-xp", "Visual Studio 2013 targeting XP" }, { "vs2015-xp", "Visual Studio 2015 targeting XP" }, { "winphone8", "Windows Phone 8.0" }, { "winphone81", "Windows Phone 8.1" }, @@ -333,7 +331,7 @@ function toolchain(_buildDir, _subDir) location (_buildDir .. "projects/" .. _subDir .. "/".. _ACTION .. "-ci20") end - elseif _ACTION == "vs2013" or _ACTION == "vs2015" or _ACTION == "vs2015-fastbuild" then + elseif _ACTION == "vs2015" or _ACTION == "vs2015-fastbuild" then if (_ACTION .. "-clang") == _OPTIONS["vs"] then premake.vstudio.toolset = ("LLVM-" .. _ACTION) @@ -384,11 +382,6 @@ function toolchain(_buildDir, _subDir) location (_buildDir .. "projects/" .. _subDir .. "/".. _ACTION .. "-intel") end - if ("vs2013-xp") == _OPTIONS["vs"] then - premake.vstudio.toolset = ("v120_xp") - location (_buildDir .. "projects/" .. _subDir .. "/".. _ACTION .. "-xp") - end - if ("vs2015-xp") == _OPTIONS["vs"] then premake.vstudio.toolset = ("v140_xp") location (_buildDir .. "projects/" .. _subDir .. "/".. _ACTION .. "-xp") |