fix msvc compile

This commit is contained in:
intealls 2017-01-14 23:34:33 +01:00
parent d406d4dd2f
commit e74399a722

View file

@ -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",
}