aboutsummaryrefslogtreecommitdiff
path: root/build2/parser
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-04-05 12:53:45 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-04-05 12:53:45 +0200
commit77e7dc1ac70976e39f2bd3bb91f49ab1f25ef524 (patch)
treec3a1e736c326473bd611b4c0bc74d45b2f9beb76 /build2/parser
parent86cdcdcf11982281aa286682faf604cff3b1c7d1 (diff)
Add support for scope/target-qualified variable expansion
For example: print $(dir/:var) print $(file{target}:var) print $(dir/file{target}:var) Note that if the scope/target does not (yet) exists, it will be created.
Diffstat (limited to 'build2/parser')
-rw-r--r--build2/parser9
1 files changed, 5 insertions, 4 deletions
diff --git a/build2/parser b/build2/parser
index 89ce9b8..ced81c3 100644
--- a/build2/parser
+++ b/build2/parser
@@ -183,11 +183,12 @@ namespace build2
// Utilities.
//
protected:
+ class enter_scope;
+ class enter_target;
- // Switch to a new current scope. Note that this function might
- // also have to switch to a new root scope if the new current
- // scope is in another project. So both must be saved and
- // restored.
+ // Switch to a new current scope. Note that this function might also have
+ // to switch to a new root scope if the new current scope is in another
+ // project. So both must be saved and restored.
//
void
switch_scope (const dir_path&);