mirror of
https://github.com/fastfloat/fast_float.git
synced 2026-04-30 19:09:19 +08:00
With bzlmod, native rules like cc_library are no longer implicitly available and must be explicitly loaded from rules_cc. Add the rules_cc dependency to MODULE.bazel and the corresponding load statement to BUILD.bazel. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
9 lines
216 B
Python
9 lines
216 B
Python
load("@rules_cc//cc:cc_library.bzl", "cc_library")
|
|
|
|
cc_library(
|
|
name = "fast_float",
|
|
hdrs = glob(["include/fast_float/*.h"]),
|
|
strip_include_prefix = "include",
|
|
visibility = ["//visibility:public"],
|
|
)
|