aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bbot/manifest13
1 files changed, 13 insertions, 0 deletions
diff --git a/bbot/manifest b/bbot/manifest
index c5a321a..51b0b8b 100644
--- a/bbot/manifest
+++ b/bbot/manifest
@@ -93,6 +93,19 @@ namespace bbot
//
variables config;
+ task_manifest (std::string n,
+ bpkg::version v,
+ bpkg::repository_location r,
+ std::string m,
+ butl::optional<butl::target_triplet> t,
+ variables c)
+ : name (std::move (n)),
+ version (std::move (v)),
+ repository (std::move (r)),
+ machine (std::move (m)),
+ target (std::move (t)),
+ config (std::move (c)) {}
+
public:
task_manifest () = default; // VC export.
task_manifest (butl::manifest_parser&, bool ignore_unknown = false);