cemu-vcpkg/toolsrc/include/vcpkg/export.chocolatey.h

20 lines
470 B
C
Raw Normal View History

2019-06-11 18:09:55 -07:00
#pragma once
#include <vcpkg/dependencies.h>
#include <vcpkg/vcpkgpaths.h>
#include <vector>
namespace vcpkg::Export::Chocolatey
{
struct Options
{
Optional<std::string> maybe_maintainer;
Optional<std::string> maybe_version_suffix;
};
2019-06-11 18:09:55 -07:00
void do_export(const std::vector<Dependencies::ExportPlanAction>& export_plan,
const VcpkgPaths& paths,
const Options& chocolatey_options);
2019-06-11 18:09:55 -07:00
}