From e421add41de86e1247b9a0327c37213110b9309b Mon Sep 17 00:00:00 2001 From: sisungo Date: Tue, 14 Jul 2026 15:56:17 +0800 Subject: [PATCH] feat (lib): add meson/cmake shortcuts Signed-off-by: sisungo --- lib/make.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/make.py b/lib/make.py index 2638653..82f0c2e 100644 --- a/lib/make.py +++ b/lib/make.py @@ -46,6 +46,8 @@ def builddep(s: str): _builddep += ["cargo", "rustc"] elif s == "shortcut/cmake": _builddep += ["cmake", "ninja"] + elif s == "shortcut/meson": + _builddep += ["meson", "ninja"] else: _builddep += [s]