comparison helper/BUILD @ 0:5695ef413be0

Initialized mono repo with bazels with few examples.
author June Park <parkjune1995@gmail.com>
date Tue, 23 Sep 2025 10:05:25 -0700
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:5695ef413be0
1 load("@rules_cc//cc:cc_library.bzl", "cc_library")
2
3 cc_library(
4 name = "helper",
5 srcs = [
6 "helper.c",
7 ],
8 hdrs = [
9 "helper.h",
10 "helper_internal.h"
11 ],
12 visibility = ["//visibility:public"],
13 )