tokei/tests/data/bazel.bzl
Embers-of-the-Fire 21be04cba1
Add Nuget Config, Bazel and EdgeQL Support, Fix Output Formatter (#999)
* add nuget configuration support

* fix test file

* add bazel language

* fix output format

* add languages to readme

* fix serialize

* add edgeql

* edit readme

* add test file

* fix edgedb
2023-05-24 16:38:26 +02:00

18 lines
323 B
Python

# 18 lines 13 code 3 comments 2 blanks
# build hello-greet
cc_library(
name = "hello-greet",
srcs = ["hello-greet.cc"],
hdrs = ["hello-greet.h"],
)
# build hello-world
cc_binary(
name = "hello-world",
srcs = ["hello-world.cc"],
deps = [
":hello-greet",
"//lib:hello-time",
],
)