aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
authorSean Yen <seanyen@corp.microsoft.com>2019-06-17 17:50:48 -0700
committerSean Yen <seanyen@corp.microsoft.com>2019-06-19 16:36:48 -0700
commit4c7188919a63dd0f3cdbd559f25571ca079596b7 (patch)
treef098085c344e99c7282a614de919e4cbaa171392 /toolsrc/include
parent11d2fc9f81065cc883a59ea29931d8e1030a3731 (diff)
downloadvcpkg-4c7188919a63dd0f3cdbd559f25571ca079596b7.tar.gz
vcpkg-4c7188919a63dd0f3cdbd559f25571ca079596b7.zip
Add version-suffix and maintainer options.
Diffstat (limited to 'toolsrc/include')
-rw-r--r--toolsrc/include/vcpkg/export.chocolatey.h9
1 files changed, 8 insertions, 1 deletions
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<std::string> maybe_maintainer;
+ Optional<std::string> maybe_version_suffix;
+ };
+
void do_export(const std::vector<Dependencies::ExportPlanAction>& export_plan,
- const VcpkgPaths& paths);
+ const VcpkgPaths& paths,
+ const Options& chocolatey_options);
}