aboutsummaryrefslogtreecommitdiff
path: root/build2/operation.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2018-06-28 09:44:15 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2018-06-28 09:44:15 +0200
commit3cc5e3bd441fc9d18fece3d9e99fae75c78438e7 (patch)
treea9a08c453370847e0d352d47e19fbfcb7cc757ef /build2/operation.cxx
parentc0f72d47fc25981dcc1f55e12dfa0fdba7b70242 (diff)
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
Diffstat (limited to 'build2/operation.cxx')
-rw-r--r--build2/operation.cxx9
1 files changed, 6 insertions, 3 deletions
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