We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e79313d commit 5e0ab97Copy full SHA for 5e0ab97
third_party/zlib.BUILD
@@ -55,13 +55,15 @@ cc_library(
55
# but clients generally use <>.
56
] + _ZLIB_PUBLIC_HEADERS,
57
hdrs = _ZLIB_PREFIXED_HEADERS,
58
- copts = [
+ copts = select({
59
+ "@platforms//os:windows": [],
60
+ "//conditions:default": [
61
"-Wno-unused-variable",
62
"-Wno-implicit-function-declaration",
63
"-Wno-implicit-fallthrough",
64
"-Wno-cast-qual",
65
"-Wno-covered-switch-default",
66
"-Wno-deprecated-non-prototype",
- ],
67
+ ]}),
68
includes = ["zlib/include/"],
69
)
0 commit comments