Config and build third party dependencies.
(self)
| 47 | """ |
| 48 | |
| 49 | def build_third_party(self): |
| 50 | """ |
| 51 | Config and build third party dependencies. |
| 52 | """ |
| 53 | commands = [ |
| 54 | "third_party/build.py cgal", |
| 55 | "third_party/build.py eigen", |
| 56 | "third_party/build.py triangle", |
| 57 | "third_party/build.py tetgen", |
| 58 | "third_party/build.py clipper", |
| 59 | "third_party/build.py qhull", |
| 60 | "third_party/build.py cork", |
| 61 | #"third_party/build.py carve", |
| 62 | "third_party/build.py draco", |
| 63 | "third_party/build.py tbb", |
| 64 | "third_party/build.py mmg", |
| 65 | ]; |
| 66 | for c in commands: |
| 67 | check_call(c.split()) |
| 68 | |
| 69 | def build_pymesh(self): |
| 70 | """ |