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)