mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-09 04:27:57 +08:00
c6149fae2f
Download and use tools to make repository and installer
19 lines
590 B
C++
19 lines
590 B
C++
#pragma once
|
|
|
|
#include "vcpkg_Files.h"
|
|
#include "vcpkg_Dependencies.h"
|
|
|
|
namespace vcpkg::Commands::Export::IFW
|
|
{
|
|
struct Options
|
|
{
|
|
Optional<std::string> maybe_repository_url;
|
|
Optional<std::string> maybe_packages_dir_path;
|
|
Optional<std::string> maybe_repository_dir_path;
|
|
Optional<std::string> maybe_config_file_path;
|
|
Optional<std::string> maybe_installer_file_path;
|
|
};
|
|
|
|
void do_export(const std::vector<Dependencies::ExportPlanAction> &export_plan, const std::string &export_id, const Options &ifw_options, const VcpkgPaths& paths);
|
|
}
|