summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src
diff options
context:
space:
mode:
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"