build: disable microsoft include warning

this error is being thrown on windows due a #include inside node
This commit is contained in:
Samuel Attard 2018-10-28 11:09:57 +11:00 committed by deepak1556
parent 32a957c455
commit c1b9ca14e7

View file

@ -403,6 +403,7 @@ static_library("electron_lib") {
}
if (is_win) {
libs += [ "dwmapi.lib" ]
cflags = [ "-Wno-microsoft-include" ]
}
if (is_linux || is_win) {
deps += [ "//third_party/breakpad:client" ]