Config and build pymesh.
(self)
| 67 | check_call(c.split()) |
| 68 | |
| 69 | def build_pymesh(self): |
| 70 | """ |
| 71 | Config and build pymesh. |
| 72 | """ |
| 73 | self._build( |
| 74 | "build", |
| 75 | " -DPythonLibsNew_FIND_VERSION={v[0]}.{v[1]}".format( |
| 76 | v=platform.python_version_tuple()), |
| 77 | False, |
| 78 | ) |
| 79 | |
| 80 | def _build(self, build_dir, cmake_args, want_install): |
| 81 | """ |