2017-08-28 13:54:19 +03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "vcpkg_Files.h"
|
|
|
|
#include "vcpkg_Dependencies.h"
|
|
|
|
|
|
|
|
namespace vcpkg::Commands::Export::IFW
|
|
|
|
{
|
2017-09-22 02:16:14 +03:00
|
|
|
struct Options
|
|
|
|
{
|
|
|
|
Optional<std::string> maybe_repository_url;
|
|
|
|
Optional<std::string> maybe_packages_dir_path;
|
2017-09-27 02:57:51 +03:00
|
|
|
Optional<std::string> maybe_repository_dir_path;
|
2017-09-22 02:16:14 +03:00
|
|
|
Optional<std::string> maybe_config_file_path;
|
2017-09-27 02:57:51 +03:00
|
|
|
Optional<std::string> maybe_installer_file_path;
|
2017-09-22 02:16:14 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
void do_export(const std::vector<Dependencies::ExportPlanAction> &export_plan, const std::string &export_id, const Options &ifw_options, const VcpkgPaths& paths);
|
2017-08-28 13:54:19 +03:00
|
|
|
}
|