(prefix, name, config, quiet)
| 339 | |
| 340 | |
| 341 | def write_library_config(prefix, name, config, quiet): |
| 342 | cached_config = prefix / (name + ".json") |
| 343 | with cached_config.open("w") as f: |
| 344 | json.dump(config, f) |
| 345 | if not quiet: |
| 346 | print(f"Succeded building {name}, wrote config to {cached_config}") |
| 347 | |
| 348 | |
| 349 | @subdir("host_build_dir", clean_ok=True) |
no test coverage detected
searching dependent graphs…