summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/src/3rdparty.lua
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/src/3rdparty.lua')
-rw-r--r--scripts/src/3rdparty.lua40
1 files changed, 0 insertions, 40 deletions
diff --git a/scripts/src/3rdparty.lua b/scripts/src/3rdparty.lua
index 1b94702544b..06fbc35e71c 100644
--- a/scripts/src/3rdparty.lua
+++ b/scripts/src/3rdparty.lua
@@ -461,46 +461,6 @@ project "lsqlite3"
}
--------------------------------------------------
--- mongoose library objects
---------------------------------------------------
-
-project "mongoose"
- uuid "ff05b529-2b6f-4166-9dff-5fe2aef89c40"
- kind "StaticLib"
-
- configuration { "vs*" }
- buildoptions {
- "/wd4996", -- warning C4996: 'function': was declared deprecated
- "/wd4100", -- warning C4100: 'xxx' : unreferenced formal parameter
- "/wd4245", -- warning C4245: 'conversion' : conversion from 'type1' to 'type2', signed/unsigned mismatch
- "/wd4267", -- warning C4267: 'var' : conversion from 'size_t' to 'type', possible loss of data
- "/wd4244", -- warning C4244: 'argument' : conversion from 'xxx' to 'xxx', possible loss of data
- }
-
- configuration { "vs2015" }
- buildoptions {
- "/wd4456", -- warning C4456: declaration of 'xxx' hides previous local declaration
- }
-
- configuration { }
-
- options {
- "ForceCPP",
- }
- defines {
- "MONGOOSE_ENABLE_THREADS",
- "NS_STACK_SIZE=0"
- }
-
- includedirs {
- MAME_DIR .. "3rdparty/mongoose",
- }
-
- files {
- MAME_DIR .. "3rdparty/mongoose/mongoose.c",
- }
-
---------------------------------------------------
-- jsoncpp library objects
--------------------------------------------------