From e5a6c7a7a61a14e546c7c2f51bbe8595d6624ff0 Mon Sep 17 00:00:00 2001 From: seanyen Date: Tue, 11 Jun 2019 18:09:55 -0700 Subject: first check-in. --- toolsrc/include/vcpkg/export.chocolatey.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 toolsrc/include/vcpkg/export.chocolatey.h (limited to 'toolsrc/include') diff --git a/toolsrc/include/vcpkg/export.chocolatey.h b/toolsrc/include/vcpkg/export.chocolatey.h new file mode 100644 index 000000000..6c38def1b --- /dev/null +++ b/toolsrc/include/vcpkg/export.chocolatey.h @@ -0,0 +1,12 @@ +#pragma once + +#include +#include + +#include + +namespace vcpkg::Export::Chocolatey +{ + void do_export(const std::vector& export_plan, + const VcpkgPaths& paths); +} -- cgit v1.2.3 From 4c7188919a63dd0f3cdbd559f25571ca079596b7 Mon Sep 17 00:00:00 2001 From: Sean Yen Date: Mon, 17 Jun 2019 17:50:48 -0700 Subject: Add version-suffix and maintainer options. --- toolsrc/include/vcpkg/export.chocolatey.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'toolsrc/include') diff --git a/toolsrc/include/vcpkg/export.chocolatey.h b/toolsrc/include/vcpkg/export.chocolatey.h index 6c38def1b..7804108fd 100644 --- a/toolsrc/include/vcpkg/export.chocolatey.h +++ b/toolsrc/include/vcpkg/export.chocolatey.h @@ -7,6 +7,13 @@ namespace vcpkg::Export::Chocolatey { + struct Options + { + Optional maybe_maintainer; + Optional maybe_version_suffix; + }; + void do_export(const std::vector& export_plan, - const VcpkgPaths& paths); + const VcpkgPaths& paths, + const Options& chocolatey_options); } -- cgit v1.2.3