2
0
Fork 0
mirror of https://github.com/bazel-contrib/rules_foreign_cc synced 2024-11-30 16:42:07 +00:00
rules_foreign_cc/examples/third_party/zlib/BUILD.zlib.bazel
UebelAndre aa61b9ad8b
Minor cleanup for examples (#835)
* Remove `BUILD` files from source globs in examples

* Updated example urls
2021-12-30 16:37:31 +00:00

25 lines
545 B
Plaintext

load("@rules_foreign_cc//foreign_cc:defs.bzl", "cmake")
package(default_visibility = ["//visibility:public"])
filegroup(
name = "all_srcs",
srcs = glob(
include = ["**"],
exclude = ["*.bazel"],
),
)
cmake(
name = "zlib",
generate_args = select({
"@platforms//os:windows": ["-GNinja"],
"//conditions:default": [],
}),
lib_source = ":all_srcs",
out_static_libs = select({
"@platforms//os:windows": ["zlibstatic.lib"],
"//conditions:default": ["libz.a"],
}),
)