mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
[build] MVP for building with bazel (#6994)
This commit is contained in:
10
thirdparty/googletest/BUILD.bazel
vendored
Normal file
10
thirdparty/googletest/BUILD.bazel
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
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"],
|
||||
)
|
||||
Reference in New Issue
Block a user