aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/cmake.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-05-23 13:55:17 +0900
committerOphestra <cat@gensokyo.uk>2026-05-23 14:00:18 +0900
commite5a40942982cae870f52a3d254feba70c0e46136 (patch)
treeb0f751324bd67edaa49c95f20204623264a1fa85 /internal/rosa/cmake.go
parent410c4f8bb08939c2de370da4ff6f6b13f48aaa1e (diff)
internal/rosa: remove unused helpers
These are no longer needed after migration. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/cmake.go')
-rw-r--r--internal/rosa/cmake.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/rosa/cmake.go b/internal/rosa/cmake.go
index 127423d1..83acad60 100644
--- a/internal/rosa/cmake.go
+++ b/internal/rosa/cmake.go
@@ -11,7 +11,7 @@ var (
_ninja = H("ninja")
)
-// CMakeHelper is the [CMake] build system helper.
+// CMakeHelper builds and tests a CMake project with specified CACHE entries.
type CMakeHelper struct {
// Path elements joined with source.
Append []string
@@ -34,7 +34,7 @@ type CMakeHelper struct {
var _ Helper = new(CMakeHelper)
-// extra returns a hardcoded slice of [CMake] and [Ninja].
+// extra returns the cmake handle alongside either ninja or make.
func (attr *CMakeHelper) extra(int) P {
if attr != nil && attr.Make {
return P{_cmake, _make}