etl/test/syntax_check/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

19 lines
344 B
Python

load("@rules_cc//cc:defs.bzl", "cc_library")
cc_library(
name = "syntax_check",
srcs = glob(
["*.t.cpp"],
),
hdrs = ["etl_profile.h"],
copts = [
"-Itest/syntax_check",
"-pedantic-errors",
"-Wall",
"-Wextra",
"-Werror",
"-Wextra-semi",
],
deps = ["//:etl"],
)