cemu-vcpkg/toolsrc/include/vcpkg/export.chocolatey.h
nicole mazzuca d2620cf02b
[vcpkg formatting] Turn off DeriveLineEnding (#12368)
* [vcpkg formatting] Turn off DeriveLineEnding

* format

* Add newlines to the end of files

Since we're reformatting anyways
2020-07-14 08:50:19 -07:00

20 lines
451 B
C++

#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;
};
void do_export(const std::vector<Dependencies::ExportPlanAction>& export_plan,
const VcpkgPaths& paths,
const Options& chocolatey_options);
}