diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-08-29 08:14:27 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-08-29 08:14:27 +0200 |
commit | 2a9d673f298b623db061ee85d397563d644c8268 (patch) | |
tree | 7fa40a9d364f710e3aa7438e273287f14eace725 /build/cli/module.cxx | |
parent | fd689eb883655dcb29e505b041cd02fac01f0bac (diff) |
New configure meta-operation implementation
Now we search and match (but do not execute) a rule for every
operation supported by the project.
Diffstat (limited to 'build/cli/module.cxx')
-rw-r--r-- | build/cli/module.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/build/cli/module.cxx b/build/cli/module.cxx index efc9ff2..0e81db3 100644 --- a/build/cli/module.cxx +++ b/build/cli/module.cxx @@ -72,6 +72,10 @@ namespace build rs.insert<cxx::ixx> (perform_id, update_id, "cli", compile_); rs.insert<cxx::ixx> (perform_id, clean_id, "cli", compile_); + + // We may need to resolve group members. + // + rs.insert<cli_cxx> (configure_id, update_id, "cli", compile_); } // Enter module variables. |