Find and invalidate any stale PCH files in the build directory.
(build_dir: Path)
| 97 | |
| 98 | |
| 99 | def _invalidate_stale_pchs(build_dir: Path) -> None: |
| 100 | """Find and invalidate any stale PCH files in the build directory.""" |
| 101 | from ci.compile_pch import invalidate_stale_pch |
| 102 | |
| 103 | for pch_file in build_dir.rglob("*.pch"): |
| 104 | invalidate_stale_pch(pch_file) |
| 105 | |
| 106 | |
| 107 | def compile_meson( |
no test coverage detected