vcpkg/toolsrc/include/vcpkg_Input.h

15 lines
358 B
C
Raw Normal View History

#pragma once
#include <vector>
#include "package_spec.h"
2016-10-01 07:54:07 +08:00
#include "vcpkg_paths.h"
2017-01-06 06:14:11 +08:00
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);
2016-10-01 07:54:07 +08:00
void check_triplet(const triplet& t, const vcpkg_paths& paths);
2017-01-06 06:14:11 +08:00
}