Mercurial
diff mrjunejune/BUILD @ 244:b8aa08503378
[tools] Add sandboxed online LaTeX editor
Co-authored-by: Copilot <[email protected]>
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Mon, 03 Aug 2026 16:56:25 -0700 |
| parents | 543df0fe7168 |
| children | 70f2a3dafc1c |
line wrap: on
line diff
--- a/mrjunejune/BUILD Mon Aug 03 15:26:44 2026 -0700 +++ b/mrjunejune/BUILD Mon Aug 03 16:56:25 2026 -0700 @@ -171,6 +171,14 @@ visibility = ["//mrjunejune/test:__pkg__"], ) +cc_library( + name = "latex_renderer", + srcs = ["latex_renderer.c"], + hdrs = ["latex_renderer.h"], + copts = ["-D_GNU_SOURCE"], + visibility = ["//mrjunejune/test:__pkg__"], +) + # Server binary cc_binary( name = "mrjunejune_server", @@ -180,6 +188,7 @@ "//markdown_converter:markdown_to_html_c", "//s3:s3", "//deita:deita", + ":latex_renderer", ], copts = ["-D_GNU_SOURCE"], linkopts = ["-lpthread"], @@ -200,6 +209,7 @@ "//markdown_converter:markdown_to_html_c", "//s3:s3", "//deita:deita", + ":latex_renderer", ], copts = ["-D_GNU_SOURCE"], linkopts = ["-lpthread"],