| 30 | }; |
| 31 | |
| 32 | struct Package { |
| 33 | std::string name; |
| 34 | std::string condition; |
| 35 | std::string version; |
| 36 | bool required = true; |
| 37 | bool config = false; |
| 38 | std::vector<std::string> components; |
| 39 | }; |
| 40 | |
| 41 | struct Vcpkg { |
| 42 | std::string version; |
nothing calls this directly
no outgoing calls
no test coverage detected