mirror of
https://github.com/ETLCPP/etl.git
synced 2026-04-30 19:09:10 +08:00
21 lines
346 B
Python
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 = ["."],
|
|
)
|