Disable -Wno-conversion on MSVC compiler (#2410)

This commit is contained in:
jonahryandavis
2020-10-07 13:32:49 -04:00
committed by GitHub
parent 2b77059502
commit 3ce148638b

View File

@@ -76,7 +76,9 @@ if (!defined(glslang_angle)) {
config("glslang_public") {
include_dirs = [ "." ]
cflags = [ "-Wno-conversion" ]
if (!is_win || is_clang) {
cflags = [ "-Wno-conversion" ]
}
}
config("glslang_hlsl") {