2016-09-18 20:50:08 -07:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <unordered_map>
|
|
|
|
|
|
|
|
namespace vcpkg {namespace details
|
|
|
|
{
|
2016-09-26 21:12:04 -07:00
|
|
|
std::string optional_field(const std::unordered_map<std::string, std::string>& fields, const std::string& fieldname);
|
2016-09-18 20:50:08 -07:00
|
|
|
|
2016-09-26 21:12:04 -07:00
|
|
|
std::string required_field(const std::unordered_map<std::string, std::string>& fields, const std::string& fieldname);
|
2016-09-18 20:50:08 -07:00
|
|
|
|
2016-09-26 21:12:04 -07:00
|
|
|
std::vector<std::string> parse_depends(const std::string& depends_string);
|
2016-09-18 20:50:08 -07:00
|
|
|
}}
|