summaryrefslogtreecommitdiffstatshomepage
path: root/scripts
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2021-10-26 11:53:27 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2021-10-26 11:53:27 +0200
commit951303452116588727a5127917dfccd36bc4ff1f (patch)
tree58c695e7ccc2e6e20ba8b74250fbb5c155ef1b0a /scripts
parent86de4740405386439848883046b52851a687dc58 (diff)
Few more leftovers removed
Diffstat (limited to 'scripts')
-rw-r--r--scripts/toolchain.lua21
1 files changed, 0 insertions, 21 deletions
diff --git a/scripts/toolchain.lua b/scripts/toolchain.lua
index 79aa3aec835..4a3eac02546 100644
--- a/scripts/toolchain.lua
+++ b/scripts/toolchain.lua
@@ -52,12 +52,6 @@ newoption {
description = "Set Android platform version (default: android-21).",
}
-newoption {
- trigger = "with-windows",
- value = "#",
- description = "Set the Windows target platform version (default: 10.0.10240.0).",
-}
-
function toolchain(_buildDir, _subDir)
location (_buildDir .. "projects/" .. _subDir .. "/".. _ACTION)
@@ -69,11 +63,6 @@ function toolchain(_buildDir, _subDir)
androidPlatform = "android-24"
end
- local windowsPlatform = "10.0.10240.0"
- if _OPTIONS["with-windows"] then
- windowsPlatform = _OPTIONS["with-windows"]
- end
-
if _ACTION == "gmake" or _ACTION == "ninja" then
if nil == _OPTIONS["gcc"] or nil == _OPTIONS["gcc_version"] then
@@ -266,16 +255,6 @@ function toolchain(_buildDir, _subDir)
configuration { "x64", "vs*", "Debug" }
targetdir (_buildDir .. _ACTION .. "/bin/x64/Debug")
- configuration { "ARM", "vs*" }
- targetdir (_buildDir .. _ACTION .. "/bin/ARM")
- objdir (_buildDir .. _ACTION .. "/obj")
-
- configuration { "ARM", "vs*", "Release" }
- targetdir (_buildDir .. _ACTION .. "/bin/ARM/Release")
-
- configuration { "ARM", "vs*", "Debug" }
- targetdir (_buildDir .. _ACTION .. "/bin/ARM/Debug")
-
configuration { "x32", "vs*-clang" }
objdir (_buildDir .. _ACTION .. "-clang/obj")