mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
Few more leftovers removed
This commit is contained in:
parent
86de474040
commit
9513034521
1 changed files with 0 additions and 21 deletions
|
@ -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")
|
||||
|
||||
|
|
Loading…
Reference in a new issue