aboutsummaryrefslogtreecommitdiff
path: root/libbrep/package.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2019-10-25 23:33:46 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2019-10-31 19:21:38 +0300
commit8e257991d80277950915a77857ea7e724001b195 (patch)
tree179129af74b06570a59054e9cc59a1b743b7cecc /libbrep/package.cxx
parent6f42144f6b0258cb46dc796c9251f57c72b23ee8 (diff)
Add support for tests, examples, and benchmark package manifest values
Diffstat (limited to 'libbrep/package.cxx')
-rw-r--r--libbrep/package.cxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/libbrep/package.cxx b/libbrep/package.cxx
index fe216d2..e6c543d 100644
--- a/libbrep/package.cxx
+++ b/libbrep/package.cxx
@@ -73,6 +73,9 @@ namespace brep
optional<email_type> bee,
dependencies_type dp,
requirements_type rq,
+ small_vector<dependency, 1> ts,
+ small_vector<dependency, 1> es,
+ small_vector<dependency, 1> bms,
build_class_exprs bs,
build_constraints_type bc,
optional<path> lc,
@@ -104,6 +107,9 @@ namespace brep
build_error_email (move (bee)),
dependencies (move (dp)),
requirements (move (rq)),
+ tests (move (ts)),
+ examples (move (es)),
+ benchmarks (move (bms)),
builds (move (bs)),
build_constraints (!stub () ? move (bc) : build_constraints_type ()),
internal_repository (move (rp)),