mirror of
https://github.com/Light-City/CPlusPlusThings.git
synced 2026-04-13 14:39:41 +08:00
9 lines
187 B
Python
9 lines
187 B
Python
# please run `bazel run //practical_exercises/10_day_practice/day5/rule:direct`
|
|
|
|
load("@rules_cc//cc:defs.bzl", "cc_binary")
|
|
|
|
cc_binary(
|
|
name = "direct",
|
|
srcs = ["direct.cpp"],
|
|
)
|