diff options
author | 2016-10-23 11:36:36 +0200 | |
---|---|---|
committer | 2016-10-23 11:36:36 +0200 | |
commit | f5d88ac12e06206e4aceb3eb297beeb1e4aa2607 (patch) | |
tree | 0633ab147b7a374943875ce2fde9d001ec9e504f /scripts/src | |
parent | 7b5ad57131df300df0ea1ea20ca3f3f4b3e2a39d (diff) |
fix VS build (noticed only when using MSBUILD=1) (nw)
Diffstat (limited to 'scripts/src')
-rw-r--r-- | scripts/src/3rdparty.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/src/3rdparty.lua b/scripts/src/3rdparty.lua index 0fec01f9c1a..673c50d4a9d 100644 --- a/scripts/src/3rdparty.lua +++ b/scripts/src/3rdparty.lua @@ -1483,7 +1483,14 @@ project "linenoise-ng" kind (LIBTYPE) addprojectflags() + + configuration { "vs*" } + buildoptions { + "/wd4701", -- warning C4701: potentially uninitialized local variable 'xxx' used + } + configuration { } + includedirs { MAME_DIR .. "3rdparty/linenoise-ng/include", } |