2016-09-30 16:49:30 -07:00
|
|
|
#pragma once
|
|
|
|
#include <vector>
|
|
|
|
#include "package_spec.h"
|
2016-09-30 16:54:07 -07:00
|
|
|
#include "vcpkg_paths.h"
|
2016-09-30 16:49:30 -07:00
|
|
|
|
2017-01-05 14:14:11 -08:00
|
|
|
namespace vcpkg::Input
|
2016-09-30 16:49:30 -07:00
|
|
|
{
|
2017-04-01 01:09:34 -07:00
|
|
|
package_spec check_and_get_package_spec(
|
|
|
|
const std::string& package_spec_as_string,
|
|
|
|
const triplet& default_target_triplet,
|
2017-04-03 14:21:51 -07:00
|
|
|
CStringView example_text);
|
2016-09-30 16:54:07 -07:00
|
|
|
|
|
|
|
void check_triplet(const triplet& t, const vcpkg_paths& paths);
|
2017-01-05 14:14:11 -08:00
|
|
|
}
|