(self, build_dir: str = BUILD_DIR)
| 37 | "Manages cmake." |
| 38 | |
| 39 | def __init__(self, build_dir: str = BUILD_DIR) -> None: |
| 40 | self._cmake_command = CMake._get_cmake_command() |
| 41 | self.build_dir = build_dir |
| 42 | |
| 43 | @property |
| 44 | def _cmake_cache_file(self) -> str: |
nothing calls this directly
no test coverage detected