| 441 | #endif |
| 442 | |
| 443 | std::string cmake::ReportCapabilities() const |
| 444 | { |
| 445 | std::string result; |
| 446 | #if !defined(CMAKE_BOOTSTRAP) |
| 447 | Json::FastWriter writer; |
| 448 | result = writer.write(this->ReportCapabilitiesJson()); |
| 449 | #else |
| 450 | result = "Not supported"; |
| 451 | #endif |
| 452 | return result; |
| 453 | } |
| 454 | |
| 455 | bool cmake::RoleSupportsExitCode() const |
| 456 | { |
no test coverage detected