etl/test/UnitTest++/BUILD.bazel
Roland Reichwein b9b36d8155
Add bazel support (#1420)
* Add bazel support

* Add github workflow for bazel
2026-04-30 12:30:01 +02:00

21 lines
346 B
Python

load("@rules_cc//cc:defs.bzl", "cc_library")
package(default_visibility = ["//visibility:public"])
cc_library(
name = "unittest-cpp",
srcs = glob(
[
"*.cpp",
"Posix/*.cpp",
],
),
hdrs = glob(
[
"*.h",
"Posix/*.h",
],
),
includes = ["."],
)