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/operation.cxx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'build2/operation.cxx') diff --git a/build2/operation.cxx b/build2/operation.cxx index d5e2299..37e7c91 100644 --- a/build2/operation.cxx +++ b/build2/operation.cxx @@ -60,7 +60,8 @@ namespace build2 nullptr, // match nullptr, // execute nullptr, // operation post - nullptr // meta-operation post + nullptr, // meta-operation post + nullptr // include }; // perform @@ -425,7 +426,8 @@ namespace build2 &match, &execute, nullptr, // operation post - nullptr // meta-operation post + nullptr, // meta-operation post + nullptr // include }; // info @@ -517,7 +519,8 @@ namespace build2 nullptr, // match &info_execute, nullptr, // operation post - nullptr // meta-operation post + nullptr, // meta-operation post + nullptr // include }; // operations -- cgit v1.1