mirror of
https://github.com/cemu-project/vcpkg.git
synced 2025-02-23 02:57:09 +01:00
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
This commit is contained in:
parent
66b906e3ad
commit
a218d0e61d
@ -20,7 +20,7 @@ namespace vcpkg
|
|||||||
///
|
///
|
||||||
struct PackageSpec
|
struct PackageSpec
|
||||||
{
|
{
|
||||||
PackageSpec() noexcept = default;
|
PackageSpec() = default;
|
||||||
PackageSpec(std::string name, Triplet triplet) : m_name(std::move(name)), m_triplet(triplet) {}
|
PackageSpec(std::string name, Triplet triplet) : m_name(std::move(name)), m_triplet(triplet) {}
|
||||||
|
|
||||||
static std::vector<PackageSpec> to_package_specs(const std::vector<std::string>& ports, Triplet triplet);
|
static std::vector<PackageSpec> to_package_specs(const std::vector<std::string>& ports, Triplet triplet);
|
||||||
@ -97,7 +97,7 @@ namespace vcpkg
|
|||||||
PackageSpec package_spec;
|
PackageSpec package_spec;
|
||||||
std::vector<std::string> features;
|
std::vector<std::string> features;
|
||||||
|
|
||||||
FullPackageSpec() noexcept = default;
|
FullPackageSpec() = default;
|
||||||
explicit FullPackageSpec(PackageSpec spec, std::vector<std::string> features = {})
|
explicit FullPackageSpec(PackageSpec spec, std::vector<std::string> features = {})
|
||||||
: package_spec(std::move(spec)), features(std::move(features))
|
: package_spec(std::move(spec)), features(std::move(features))
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user