More work on slang compilation

This commit is contained in:
Kovid Goyal
2026-06-27 17:14:57 +05:30
parent c55deba34c
commit 6e53ada457
4 changed files with 84 additions and 5 deletions

View File

@@ -1218,6 +1218,7 @@ def build_shaders(args: Options) -> None:
needed = []
for (needs_build, desc, cmd) in cmds:
if needs_build:
desc = re.sub(r'\|(.+?)\|', lambda m: emphasis(m.group(1)), desc)
needed.append(Command(desc, cmd, lambda: True))
parallel_run(needed)