summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/toolchain.lua
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/toolchain.lua')
-rw-r--r--scripts/toolchain.lua31
1 files changed, 1 insertions, 30 deletions
diff --git a/scripts/toolchain.lua b/scripts/toolchain.lua
index df21f41c176..79aa3aec835 100644
--- a/scripts/toolchain.lua
+++ b/scripts/toolchain.lua
@@ -43,10 +43,6 @@ newoption {
allowed = {
{ "intel-15", "Intel C++ Compiler XE 15.0" },
{ "clangcl", "Visual Studio 2019 using Clang/LLVM" },
- { "winphone8", "Windows Phone 8.0" },
- { "winphone81", "Windows Phone 8.1" },
- { "winstore81", "Windows Store 8.1" },
- { "winstore82", "Universal Windows App" }
},
}
@@ -222,29 +218,13 @@ function toolchain(_buildDir, _subDir)
premake.gcc.ar = toolchainPrefix .. "ar"
location (_buildDir .. "projects/" .. _subDir .. "/".. _ACTION .. "-osx-clang")
end
- elseif _ACTION == "vs2019" or _ACTION == "vs2019-fastbuild" then
+ elseif _ACTION == "vs2019" then
if "clangcl" == _OPTIONS["vs"] then
premake.vstudio.toolset = ("ClangCL")
location (_buildDir .. "projects/" .. _subDir .. "/".. _ACTION .. "-clang")
end
- if "winstore82" == _OPTIONS["vs"] then
- premake.vstudio.toolset = "v142"
- premake.vstudio.storeapp = "10.0"
-
- -- If needed, depending on GENie version, enable file-level configuration
- if enablefilelevelconfig ~= nil then
- enablefilelevelconfig()
- end
-
- local action = premake.action.current()
- action.vstudio.windowsTargetPlatformVersion = windowsPlatform
-
- platforms { "ARM" }
- location (_buildDir .. "projects/" .. _subDir .. "/".. _ACTION .. "-winstore82")
- end
-
if "intel-15" == _OPTIONS["vs"] then
premake.vstudio.toolset = "Intel C++ Compiler XE 15.0"
location (_buildDir .. "projects/" .. _subDir .. "/".. _ACTION .. "-intel")
@@ -319,15 +299,6 @@ function toolchain(_buildDir, _subDir)
"-Qunused-arguments",
}
- configuration { "winphone8* or winstore8*" }
- removeflags {
- "StaticRuntime",
- "NoExceptions",
- }
- flags {
- "WinMain"
- }
-
configuration { "mingw*" }
defines { "WIN32" }