Execute `cmake` as a subprocess with given arguments. @param args: Command-line arguments to pass to `cmake`.
(self, args: List[str])
| 86 | ) |
| 87 | |
| 88 | def __cmake(self, args: List[str]): |
| 89 | """ |
| 90 | Execute `cmake` as a subprocess with given arguments. |
| 91 | |
| 92 | @param args: Command-line arguments to pass to `cmake`. |
| 93 | """ |
| 94 | args = ["cmake"] + args |
| 95 | self.announce(" ".join(map(shlex.quote, args)), level=2) |
| 96 | subprocess.check_call(args, env=os.environ.copy()) |
| 97 | |
| 98 | |
| 99 | setup( |