More work on slang compilation

This commit is contained in:
Kovid Goyal 2026-06-27 17:14:57 +05:30
parent 8142a84573
commit 72e88fccd7
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C
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)