Return the arguments to cmake invocation.
(self)
| 77 | |
| 78 | @property |
| 79 | def arguments(self): |
| 80 | """" Return the arguments to cmake invocation. """ |
| 81 | arguments = [ |
| 82 | f"-G{self.generator}", |
| 83 | ] + self.definitions + [ |
| 84 | self.source |
| 85 | ] |
| 86 | return arguments |
| 87 | |
| 88 | def build(self, build_dir, force=False, cmd_kwargs=None, **kwargs): |
| 89 | """ Invoke cmake into a build directory. |
no outgoing calls
no test coverage detected