aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include/vcpkg_Input.h
blob: 97fb09e3d077bdacba17483ae81bfcd33df188dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once
#include <vector>
#include "PackageSpec.h"
#include "VcpkgPaths.h"

namespace vcpkg::Input
{
    PackageSpec check_and_get_package_spec(
        const std::string& package_spec_as_string,
        const Triplet& default_triplet,
        CStringView example_text);

    void check_triplet(const Triplet& t, const VcpkgPaths& paths);
}