(self, command, cwd)
| 182 | return meson_build_file |
| 183 | |
| 184 | def _run_subprocess_command(self, command, cwd): |
| 185 | subprocess.run(command, cwd=cwd, check=True) |
| 186 | |
| 187 | def run_meson(self, build_dir: Path): |
| 188 | setup_command = ["meson", "setup", self.meson_build_dir] |