From 5d1acf6a256c6b47f192f775eba2676a07c3c7be Mon Sep 17 00:00:00 2001 From: zarazaex69 Date: Thu, 30 Apr 2026 00:31:02 +0300 Subject: [PATCH] refactor(mage): rename BuildB to BuildCLIB for clarity --- magefile.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/magefile.go b/magefile.go index b3db124..0f463b5 100644 --- a/magefile.go +++ b/magefile.go @@ -40,13 +40,15 @@ func BuildCLI() error { return buildBinary("olcrtc", "./cmd/olcrtc", goos, goarch, false) } -// BuildB builds olcrtc with b codec support (requires libb.so). -func BuildB() error { +// BuildCLIB builds the olcrtc CLI with b codec support (requires libb.so). +func BuildCLIB() error { mg.Deps(Deps) mg.Deps(B.Build) return buildBinary("olcrtc", "./cmd/olcrtc", goos, goarch, true) } +// TODO: BuildUIB, BuildB (cli+ui with b codec) + // BuildUI builds the Fyne desktop UI binary. func BuildUI() error { return buildUIBinary(goos, goarch)