vcpkg/toolsrc/include/vcpkg_Input.h

15 lines
346 B
C
Raw Normal View History

#pragma once
#include <vector>
2017-04-04 05:45:00 +08:00
#include "PackageSpec.h"
2017-04-04 07:29:11 +08:00
#include "VcpkgPaths.h"
2017-01-06 06:14:11 +08:00
namespace vcpkg::Input
{
2017-04-04 05:45:00 +08:00
PackageSpec check_and_get_package_spec(
const std::string& package_spec_as_string,
const Triplet& default_triplet,
2017-04-04 05:21:51 +08:00
CStringView example_text);
2016-10-01 07:54:07 +08:00
2017-04-04 07:29:11 +08:00
void check_triplet(const Triplet& t, const VcpkgPaths& paths);
2017-01-06 06:14:11 +08:00
}