diff options
author | 2018-12-30 12:54:48 -0800 | |
---|---|---|
committer | 2018-12-30 12:54:48 -0800 | |
commit | 3c34a1d3079e7d328cb1d6d74905296c2b53fa8b (patch) | |
tree | 842103afc4eb0aedb7b42166a30c47aa0c58ce27 /scripts/genie.lua | |
parent | fcb9b7ee57a17d6090945d6c456963ab2eabcadb (diff) |
Fix errors with single-driver build of vsnes.cpp [Justin Kerk]
Diffstat (limited to 'scripts/genie.lua')
-rw-r--r-- | scripts/genie.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/genie.lua b/scripts/genie.lua index 46a4f9310d9..2696ad6db96 100644 --- a/scripts/genie.lua +++ b/scripts/genie.lua @@ -481,7 +481,7 @@ flags { "StaticRuntime", } -configuration { "vs*" } +configuration { "vs20*" } buildoptions { "/bigobj", } @@ -496,13 +496,13 @@ configuration { "vs*" } end -configuration { "Debug", "vs*" } +configuration { "Debug", "vs20*" } flags { "Symbols", "NoMultiProcessorCompilation", } -configuration { "Release", "vs*" } +configuration { "Release", "vs20*" } flags { "Optimize", "NoEditAndContinue", @@ -1267,7 +1267,7 @@ configuration { "mingw-clang" } end -configuration { "vs*" } +configuration { "vs20*" } defines { "XML_STATIC", "WIN32", |