mirror of
https://github.com/ETLCPP/etl.git
synced 2026-04-30 19:09:10 +08:00
10 lines
198 B
Python
10 lines
198 B
Python
load("@rules_cc//cc:defs.bzl", "cc_library")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
cc_library(
|
|
name = "etl",
|
|
hdrs = glob(["include/**/*.h"]),
|
|
includes = ["include"],
|
|
)
|