2021-10-06 16:09:19 +00:00
|
|
|
module(
|
|
|
|
name = "rules_cc",
|
2022-09-23 14:42:18 +00:00
|
|
|
version = "0.0.4",
|
2023-01-11 08:11:34 +00:00
|
|
|
compatibility_level = 1,
|
2021-10-06 16:09:19 +00:00
|
|
|
)
|
|
|
|
|
2024-06-03 23:19:58 +00:00
|
|
|
bazel_dep(name = "bazel_skylib", version = "1.7.1")
|
2023-07-28 21:37:53 +00:00
|
|
|
bazel_dep(name = "platforms", version = "0.0.7")
|
2021-10-06 16:09:19 +00:00
|
|
|
|
2023-09-19 07:57:24 +00:00
|
|
|
cc_configure = use_extension("@bazel_tools//tools/cpp:cc_configure.bzl", "cc_configure_extension")
|
2023-09-19 07:58:14 +00:00
|
|
|
use_repo(cc_configure, "local_config_cc_toolchains")
|
2023-09-19 08:05:03 +00:00
|
|
|
|
2022-09-19 12:00:24 +00:00
|
|
|
register_toolchains("@local_config_cc_toolchains//:all")
|
2023-01-11 12:32:58 +00:00
|
|
|
|
2024-02-20 23:53:42 +00:00
|
|
|
bazel_dep(name = "rules_testing", version = "0.6.0", dev_dependency = True)
|