vcpkg/toolsrc/include/vcpkg_Commands_Export_IFW.h
Konstantin Podsvirov 68b9c2d8b9 [vcpkg-export-ifw] Separate IFW loop
Separate IFW loop compatible with main export loop
Fixed mistakes in templates
Set current date to ReleaseDate tag
2017-09-28 00:21:26 +03:00

17 lines
476 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_config_file_path;
};
void do_export(const std::vector<Dependencies::ExportPlanAction> &export_plan, const std::string &export_id, const Options &ifw_options, const VcpkgPaths& paths);
}