From 3cc5e3bd441fc9d18fece3d9e99fae75c78438e7 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 28 Jun 2018 09:44:15 +0200 Subject: Implement support for excluded and ad hoc prerequisites The inclusion/exclusion is controlled via the 'include' prerequisite-specific variable. Valid values are: false - exclude true - include adhoc - include but treat as an ad hoc input For example: lib{foo}: cxx{win32-utility}: include = ($cxx.targe.class == 'windows') exe{bar}: libs{plugin}: include = adhoc --- build2/dist/rule.cxx | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'build2/dist/rule.cxx') diff --git a/build2/dist/rule.cxx b/build2/dist/rule.cxx index 5ae1f66..d5f42f0 100644 --- a/build2/dist/rule.cxx +++ b/build2/dist/rule.cxx @@ -31,6 +31,9 @@ namespace build2 for (prerequisite_member p: group_prerequisite_members (a, t, members_mode::maybe)) { + // Note: no exclusion tests, we want all of them (and see also the + // dist_include() override). + // Skip prerequisites imported from other projects. // if (p.proj ()) @@ -49,6 +52,8 @@ namespace build2 // is mentioned as a target, then it is in out (we don't do the same // target in both src/out). // + // @@ Note that this is still an issue in a custom dist rule. + // const target* pt (nullptr); if (p.is_a ()) { -- cgit v1.1