mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-24 01:31:46 +00:00
11 lines
269 B
Python
11 lines
269 B
Python
load("@rules_cc//cc:defs.bzl", "cc_library")
|
|
|
|
cc_library(
|
|
name = "googletest.static",
|
|
srcs = glob(["src/**"]),
|
|
hdrs = glob(["include/**"]),
|
|
includes = ["src/googletest"],
|
|
strip_include_prefix = "include",
|
|
visibility = ["//visibility:public"],
|
|
)
|