diff options
author | 2016-05-31 20:26:24 -0700 | |
---|---|---|
committer | 2016-05-31 20:26:34 -0700 | |
commit | 551d9998f5c6d391569f098a731887f1c72c7fd3 (patch) | |
tree | c5422512e657ee7418b92f7618cd66fe5dd93cb7 /scripts/toolchain.lua | |
parent | 77c20e43f03b6fd68aff7803348fdfed4ec09edf (diff) |
support msbuild from posix shell
preliminary fastbuild support (experimental in genie)
Diffstat (limited to 'scripts/toolchain.lua')
-rw-r--r-- | scripts/toolchain.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/toolchain.lua b/scripts/toolchain.lua index e717102f44e..23429e52602 100644 --- a/scripts/toolchain.lua +++ b/scripts/toolchain.lua @@ -373,7 +373,7 @@ function toolchain(_buildDir, _subDir) location (_buildDir .. "projects/" .. _subDir .. "/".. _ACTION .. "-ci20") end - elseif _ACTION == "vs2013" or _ACTION == "vs2015" then + elseif _ACTION == "vs2013" or _ACTION == "vs2015" or _ACTION == "vs2015-fastbuild" then if (_ACTION .. "-clang") == _OPTIONS["vs"] then premake.vstudio.toolset = ("LLVM-" .. _ACTION) |