Unverified Commit 3ce14863 by jonahryandavis Committed by GitHub

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

parent 2b770595
...@@ -76,7 +76,9 @@ if (!defined(glslang_angle)) { ...@@ -76,7 +76,9 @@ if (!defined(glslang_angle)) {
config("glslang_public") { config("glslang_public") {
include_dirs = [ "." ] include_dirs = [ "." ]
cflags = [ "-Wno-conversion" ] if (!is_win || is_clang) {
cflags = [ "-Wno-conversion" ]
}
} }
config("glslang_hlsl") { config("glslang_hlsl") {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment