diff options
Diffstat (limited to 'scripts/genie.lua')
-rw-r--r-- | scripts/genie.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/genie.lua b/scripts/genie.lua index c0424b34f99..39669acb524 100644 --- a/scripts/genie.lua +++ b/scripts/genie.lua @@ -482,7 +482,7 @@ configuration { "Release", "vs*" } "Optimize", } --- Force VS2015 targets to use bundled SDL2 +-- Force VS2015/17 targets to use bundled SDL2 if string.sub(_ACTION,1,4) == "vs20" and _OPTIONS["osd"]=="sdl" then if _OPTIONS["with-bundled-sdl2"]==nil then _OPTIONS["with-bundled-sdl2"] = "1" @@ -1275,7 +1275,7 @@ end includedirs { MAME_DIR .. "3rdparty/dxsdk/Include" } -configuration { "vs2015*" } +configuration { "vs201*" } buildoptions { "/wd4334", -- warning C4334: '<<': result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) "/wd4456", -- warning C4456: declaration of 'xxx' hides previous local declaration |