diff options
author | 2016-11-16 20:57:40 +0100 | |
---|---|---|
committer | 2016-11-16 21:00:29 +0100 | |
commit | 8e61a7d3d37d0ceaf2f6af0a460d2f9c692e5252 (patch) | |
tree | 1683fe6ce9b9f32389b0686c240f19fd2bca2e15 /scripts/genie.lua | |
parent | ffc04d2baede0eab5768aa6a2ca5ea67cfa9ed86 (diff) |
Added VS2017 support into project files (nw)
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 |