| 61 | } |
| 62 | |
| 63 | Json::Value Toolchains::DumpToolchains() |
| 64 | { |
| 65 | Json::Value toolchains = Json::arrayValue; |
| 66 | |
| 67 | for (std::string const& lang : |
| 68 | this->FileAPI.GetCMakeInstance()->GetState()->GetEnabledLanguages()) { |
| 69 | toolchains.append(this->DumpToolchain(lang)); |
| 70 | } |
| 71 | |
| 72 | return toolchains; |
| 73 | } |
| 74 | |
| 75 | Json::Value Toolchains::DumpToolchain(std::string const& lang) |
| 76 | { |
no test coverage detected