1
0
Fork 0
mirror of https://github.com/Neargye/magic_enum.git synced 2026-01-10 23:44:29 +00:00
This commit is contained in:
Ezekiel Warren 2025-12-06 12:47:46 -08:00 committed by GitHub
commit c7ec5246f3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 11 additions and 2 deletions

View file

@ -1,3 +1,5 @@
load("@rules_cc//cc:defs.bzl", "cc_library")
licenses(["notice"]) licenses(["notice"])
exports_files(["LICENSE"]) exports_files(["LICENSE"])

View file

@ -3,3 +3,5 @@ module(
version = "0.9.7", version = "0.9.7",
compatibility_level = 0, compatibility_level = 0,
) )
bazel_dep(name = "rules_cc", version = "0.2.14")

View file

@ -1,3 +1,5 @@
load("@rules_cc//cc:defs.bzl", "cc_test", "cc_library")
_TESTS = [ _TESTS = [
"test", "test",
"test_flags", "test_flags",

View file

@ -1,6 +1,9 @@
module(name = "magic_enum_tests") module(name = "magic_enum_tests")
bazel_dep(name = "magic_enum") bazel_dep(name = "magic_enum")
local_path_override(module_name = "magic_enum", path = "..") local_path_override(
module_name = "magic_enum",
path = "..",
)
bazel_dep(name = "rules_cc", version = "0.0.8") bazel_dep(name = "rules_cc", version = "0.2.14")