mirror of
https://github.com/vale981/apheleia
synced 2025-03-06 01:51:41 -05:00
8 lines
264 B
Text
8 lines
264 B
Text
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"])
|