mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-29 16:49:01 +08:00
15 lines
358 B
C++
15 lines
358 B
C++
#pragma once
|
|
#include <vector>
|
|
#include "package_spec.h"
|
|
#include "vcpkg_paths.h"
|
|
|
|
namespace vcpkg::Input
|
|
{
|
|
package_spec check_and_get_package_spec(
|
|
const std::string& package_spec_as_string,
|
|
const triplet& default_target_triplet,
|
|
cstring_view example_text);
|
|
|
|
void check_triplet(const triplet& t, const vcpkg_paths& paths);
|
|
}
|