(value: Optional[str])
| 35 | |
| 36 | @staticmethod |
| 37 | def _is_truthy(value: Optional[str]) -> bool: |
| 38 | if (value is None) or (value.lower().strip() in _FALSE_VALUES): |
| 39 | return False |
| 40 | return True |
| 41 | |
| 42 | @staticmethod |
| 43 | def read_cmake_cache(cache_path: str) -> Dict[str, CacheValue]: |