aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include/vcpkg_Input.h
blob: fd549f2789e08680960771e1629b2068556d5683 (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_target_triplet,
        CStringView example_text);

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