19 lines
266 B
Python
19 lines
266 B
Python
cc_library(
|
|
name = "base",
|
|
hdrs = [
|
|
"integers.hpp",
|
|
],
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
cc_test(
|
|
name = "integers_tests",
|
|
srcs = [
|
|
"integers_tests.cpp",
|
|
],
|
|
deps = [
|
|
":base",
|
|
],
|
|
)
|
|
|