Mercurial
diff mrjunejune/BUILD @ 7:114cad94008f
[Seobeo] Updated to support thread and edge server calls.
| author | June Park <parkjune1995@gmail.com> |
|---|---|
| date | Mon, 29 Sep 2025 17:00:38 -0700 |
| parents | |
| children | de54585a40f1 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mrjunejune/BUILD Mon Sep 29 17:00:38 2025 -0700 @@ -0,0 +1,14 @@ +load("@rules_cc//cc:cc_binary.bzl", "cc_binary") +load("@rules_cc//cc:cc_library.bzl", "cc_library") + +filegroup( + name = "pages_files", + srcs = glob(["pages/**"]), +) + +cc_binary( + name = "mrjunejune", + srcs = ["main.c"], + deps = ["//seobeo:seobeo"], + data = glob(["pages/**"]) + ["//seobeo:seobeo_headers"], +)