Mercurial
view hg-web/BUILD @ 147:6de849867459 hg-web
[HgWeb] Updated logic to use Seobeo Client.
| author | June Park <parkjune1995@gmail.com> |
|---|---|
| date | Fri, 09 Jan 2026 18:39:34 -0800 |
| parents | ffb764d2fcc5 |
| children | 71ad34a8bc9a |
line wrap: on
line source
load("@rules_cc//cc:cc_binary.bzl", "cc_binary") load("//gui_ze:gui_ze.bzl", "move_files_into_dir", "bundle") move_files_into_dir( name = "compiled_ts", srcs = [ "//markdown_converter:markdown_to_html", ], dest = "src", ) filegroup( name = "src_files", srcs = glob(["src/**"]) + [":compiled_ts"], ) cc_binary( name = "hg_web_server", srcs = ["main.c"], deps = [ "//seobeo:seobeo", ], data = [":src_files"], ) bundle( name = "hg_web_server_bundle", binary = ":hg_web_server", ) cc_binary( name = "hg_web_server_debug", srcs = ["main.c"], deps = ["//seobeo:seobeo_tcp_server_ws_debug"], data = [":src_files"], )