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