(self, command, cwd)
| 164 | return meson_build_file |
| 165 | |
| 166 | def _run_subprocess_command(self, command, cwd): |
| 167 | subprocess.run(command, cwd=cwd, check=True) |
| 168 | |
| 169 | def run_meson(self, build_dir: Path): |
| 170 | setup_command = ["meson", "setup", self.meson_build_dir] |