bazel work

This commit is contained in:
2019-01-10 21:46:00 -08:00
parent 3a10624966
commit 87d2b360bb
5 changed files with 50 additions and 5 deletions

13
gtest.BUILD Normal file
View File

@@ -0,0 +1,13 @@
cc_library(
name = "main",
srcs = glob(
["src/*.cc"],
exclude = ["src/gtest-all.cc"]
),
hdrs = glob([
"include/**/*.h",
"src/*.h"
]),
copts = ["-Iexternal/gtest/include"],
visibility = ["//visibility:public"],
)