summaryrefslogtreecommitdiffstats
path: root/docs/release/scripts/src/main.lua
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2021-11-24 14:03:41 +1100
committer Robbbert <Robbbert@users.noreply.github.com>2021-11-24 14:03:41 +1100
commit32784fab1e754120143564671bb597d5097826ae (patch)
tree4e54cfcc5e4dafc0e887b1877d895c863cbd2612 /docs/release/scripts/src/main.lua
parent44a5a57d0eefc1aeafb00d42f91e2100e186a71c (diff)
0.238 filestag238
Diffstat (limited to 'docs/release/scripts/src/main.lua')
-rw-r--r--docs/release/scripts/src/main.lua61
1 files changed, 0 insertions, 61 deletions
diff --git a/docs/release/scripts/src/main.lua b/docs/release/scripts/src/main.lua
index 985afcf2cda..8183f5b8748 100644
--- a/docs/release/scripts/src/main.lua
+++ b/docs/release/scripts/src/main.lua
@@ -40,17 +40,6 @@ end
"GLESv2",
"SDL2",
}
- configuration { "pnacl" }
- kind "ConsoleApp"
- targetextension ".pexe"
- links {
- "ppapi",
- "ppapi_gles2",
- "pthread",
- }
-
- configuration { "winstore*" }
- kind "WindowedApp"
configuration { }
@@ -68,36 +57,6 @@ end
}
end
- configuration { "winstore*" }
- -- Windows Required Files
- files {
- -- Manifest file
- MAME_DIR .. "scripts/resources/uwp/Package.appxmanifest",
- }
-
- configuration { "winstore*" }
- files {
- MAME_DIR .. "scripts/resources/uwp/assets/*.png"
- }
- configuration "**/scripts/resources/uwp/assets/*.png"
- flags { "DeploymentContent" }
-
- -- Effects and Shaders
- configuration { "winstore*" }
- files {
- MAME_DIR .. "artwork/*",
- MAME_DIR .. "artwork/**/*",
- MAME_DIR .. "bgfx/*",
- MAME_DIR .. "bgfx/**/*",
- MAME_DIR .. "hash/*",
- MAME_DIR .. "language/*",
- MAME_DIR .. "language/**/*",
- MAME_DIR .. "plugins/*",
- MAME_DIR .. "plugins/**/*",
- }
- configuration "**/*"
- flags { "DeploymentContent" }
-
configuration { "x64", "Release" }
targetsuffix ""
if _OPTIONS["PROFILE"] then
@@ -125,9 +84,6 @@ end
configuration { "mingw*" or "vs20*" }
targetextension ".exe"
- configuration { "rpi" }
- targetextension ""
-
configuration { "asmjs" }
targetextension ".bc"
if os.getenv("EMSCRIPTEN") then
@@ -204,12 +160,6 @@ end
if _OPTIONS["PLATFORM"]=="arm64" then
targetdir(MAME_DIR .. "android-project/app/src/main/libs/arm64-v8a")
end
- if _OPTIONS["PLATFORM"]=="mips" then
- targetdir(MAME_DIR .. "android-project/app/src/main/libs/mips")
- end
- if _OPTIONS["PLATFORM"]=="mips64" then
- targetdir(MAME_DIR .. "android-project/app/src/main/libs/mips64")
- end
if _OPTIONS["PLATFORM"]=="x86" then
targetdir(MAME_DIR .. "android-project/app/src/main/libs/x86")
end
@@ -275,13 +225,9 @@ if (STANDALONE~=true) then
links {
ext_lib("lua"),
"lualibs",
- }
-if (_OPTIONS["osd"] ~= "uwp") then
- links {
"linenoise",
}
end
-end
links {
ext_lib("zlib"),
ext_lib("flac"),
@@ -432,13 +378,6 @@ if (STANDALONE~=true) then
"@echo Emitting ".. rctarget .. "vers.rc...",
PYTHON .. " \"" .. path.translate(MAME_DIR .. "scripts/build/verinfo.py","\\") .. "\" -r -b " .. rctarget .. " \"" .. path.translate(GEN_DIR .. "version.cpp","\\") .. "\" > \"" .. path.translate(GEN_DIR .. "resource/" .. rctarget .. "vers.rc", "\\") .. "\"" ,
}
-
- configuration { "vsllvm" }
- prebuildcommands {
- "mkdir \"" .. path.translate(GEN_DIR .. "resource/","\\") .. "\" 2>NUL",
- "@echo Emitting ".. rctarget .. "vers.rc...",
- PYTHON .. " \"" .. path.translate(MAME_DIR .. "scripts/build/verinfo.py","\\") .. "\" -r -b " .. rctarget .. " \"" .. path.translate(GEN_DIR .. "version.cpp","\\") .. "\" > \"" .. path.translate(GEN_DIR .. "resource/" .. rctarget .. "vers.rc", "\\") .. "\"" ,
- }
end
configuration { }