mirror of
https://github.com/XAMPPRocky/tokei
synced 2024-10-30 07:11:48 +00:00
21be04cba1
* 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
18 lines
No EOL
323 B
Python
18 lines
No EOL
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",
|
|
],
|
|
) |