refactor(mage): rename BuildB to BuildCLIB for clarity

This commit is contained in:
zarazaex69
2026-04-30 00:31:02 +03:00
parent e7a62a77c2
commit 5d1acf6a25

View File

@@ -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)