diff options
author | 2017-01-14 23:34:33 +0100 | |
---|---|---|
committer | 2017-01-14 23:34:33 +0100 | |
commit | e74399a7225542c5651b4e975c812be6585d7ac5 (patch) | |
tree | a9b2b3735e3578cf3b86832f1839cf729c84bfde /scripts/src | |
parent | d406d4dd2fe4d801ab4779680280dfd2789af49b (diff) |
fix msvc compile
Diffstat (limited to 'scripts/src')
-rw-r--r-- | scripts/src/3rdparty.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/src/3rdparty.lua b/scripts/src/3rdparty.lua index 081f8692f66..13904e80377 100644 --- a/scripts/src/3rdparty.lua +++ b/scripts/src/3rdparty.lua @@ -968,6 +968,7 @@ project "portaudio" buildoptions { "/wd4204", -- warning C4204: nonstandard extension used : non-constant aggregate initializer "/wd4701", -- warning C4701: potentially uninitialized local variable 'xxx' used + "/wd4057", -- warning C4057: 'function': 'xxx' differs in indirection to slightly different base types from 'xxx' } configuration { } @@ -999,6 +1000,10 @@ project "portaudio" } includedirs { MAME_DIR .. "3rdparty/portaudio/src/os/win", + } + + configuration { "mingw*" } + includedirs { MAME_DIR .. "3rdparty/portaudio/src/hostapi/wasapi/mingw-include", } |