mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-06 05:57:56 +08:00
16 lines
637 B
C++
16 lines
637 B
C++
#pragma once
|
|
#include <vector>
|
|
#include "package_spec.h"
|
|
#include "StatusParagraphs.h"
|
|
#include <unordered_set>
|
|
#include "vcpkg_paths.h"
|
|
|
|
namespace vcpkg {namespace Dependencies
|
|
{
|
|
std::vector<package_spec> create_dependency_ordered_install_plan(const vcpkg_paths& paths, const std::vector<package_spec>& specs, const StatusParagraphs& status_db);
|
|
|
|
std::unordered_set<package_spec> get_unmet_dependencies(const vcpkg_paths& paths, const std::vector<package_spec>& specs, const StatusParagraphs& status_db);
|
|
|
|
std::vector<std::string> get_unmet_package_build_dependencies(const vcpkg_paths& paths, const package_spec& spec);
|
|
}}
|