Files
asl/asl/base/BUILD.bazel
2024-07-30 00:18:28 +02:00

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",
],
)