blob: f4495039bca06137dc0936e8f150023cc50bf0d9 (
plain)
1
2
3
4
|
load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library");cc_library(
name="hello-greet",
srcs=["hello-greet.cc"],
hdrs=["hello-greet.h"]);cc_binary(name="hello-world", srcs=["hello-world.cc"], deps=[":hello-greet", "//lib:hello-time"])
|