build: disable microsoft include warning
this error is being thrown on windows due a #include inside node
This commit is contained in:
parent
32a957c455
commit
c1b9ca14e7
1 changed files with 1 additions and 0 deletions
1
BUILD.gn
1
BUILD.gn
|
@ -403,6 +403,7 @@ static_library("electron_lib") {
|
||||||
}
|
}
|
||||||
if (is_win) {
|
if (is_win) {
|
||||||
libs += [ "dwmapi.lib" ]
|
libs += [ "dwmapi.lib" ]
|
||||||
|
cflags = [ "-Wno-microsoft-include" ]
|
||||||
}
|
}
|
||||||
if (is_linux || is_win) {
|
if (is_linux || is_win) {
|
||||||
deps += [ "//third_party/breakpad:client" ]
|
deps += [ "//third_party/breakpad:client" ]
|
||||||
|
|
Loading…
Reference in a new issue