summaryrefslogtreecommitdiffstats
path: root/scripts/src
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2021-10-26 10:32:43 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2021-10-26 10:32:43 +0200
commitf317b4d5342eafbee5900ffa685673fdd17f398d (patch)
tree211e8c3996f9b3704d50dbf3a622b53d541f4b0d /scripts/src
parent60706c1e933d8533232157241a576f96a229380e (diff)
Remove pnacl remains
Diffstat (limited to 'scripts/src')
-rw-r--r--scripts/src/3rdparty.lua12
-rw-r--r--scripts/src/main.lua9
2 files changed, 1 insertions, 20 deletions
diff --git a/scripts/src/3rdparty.lua b/scripts/src/3rdparty.lua
index fff3b94f0c8..c3748d688b3 100644
--- a/scripts/src/3rdparty.lua
+++ b/scripts/src/3rdparty.lua
@@ -878,16 +878,11 @@ end
"LUA_COMPAT_5_1",
"LUA_COMPAT_5_2",
}
- if not (_OPTIONS["targetos"]=="windows") and not (_OPTIONS["targetos"]=="asmjs") and not (_OPTIONS["targetos"]=="pnacl") then
+ if not (_OPTIONS["targetos"]=="windows") and not (_OPTIONS["targetos"]=="asmjs") then
defines {
"LUA_USE_POSIX",
}
end
- if ("pnacl" == _OPTIONS["gcc"]) then
- defines {
- "LUA_32BITS",
- }
- end
configuration { }
@@ -953,11 +948,6 @@ project "lualibs"
"/wd4130", -- warning C4130: '==': logical operation on address of string constant
}
- configuration { "pnacl"}
- buildoptions {
- "-Wno-char-subscripts",
- }
-
configuration { }
defines {
"LUA_COMPAT_ALL",
diff --git a/scripts/src/main.lua b/scripts/src/main.lua
index 992f883f3c8..067cd8ad27a 100644
--- a/scripts/src/main.lua
+++ b/scripts/src/main.lua
@@ -40,15 +40,6 @@ end
"GLESv2",
"SDL2",
}
- configuration { "pnacl" }
- kind "ConsoleApp"
- targetextension ".pexe"
- links {
- "ppapi",
- "ppapi_gles2",
- "pthread",
- }
-
configuration { "winstore*" }
kind "WindowedApp"