Define minimum supported Windows version as Vista

Libuv makes this default to XP if it's not explicitly set, which makes
the condition variable functionality that core now uses unavailable.
This commit is contained in:
Thomas Goyne 2017-09-08 11:33:07 -07:00
parent 352254c440
commit bc33e958af

View File

@ -24,7 +24,7 @@
],
"conditions": [
["OS=='win'", {
"defines": [ "_UNICODE", "UNICODE", "WIN32=1", "_HAS_EXCEPTIONS=1", "WIN32_LEAN_AND_MEAN" ]
"defines": [ "_UNICODE", "UNICODE", "WIN32=1", "_HAS_EXCEPTIONS=1", "WIN32_LEAN_AND_MEAN", "_WIN32_WINNT=0x600" ]
}],
["OS=='mac'", {
"xcode_settings": {