aboutsummaryrefslogtreecommitdiff
path: root/build/target
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-12-02 11:37:15 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-12-02 11:37:15 +0200
commit9891b20350021ce41a950645dd76df20a45c92cc (patch)
tree0cd27041b0c3413e17b9319ae99e87c5e745b1ff /build/target
parent74212589a797ca75e55f92a522e198915c0dbaf6 (diff)
Implement optional module loading
The syntax is: using? cli Now each module use results in two bool variables: <module>.loaded and <module>.configured. Also implement variable visibility (the above two variables are limited to project).
Diffstat (limited to 'build/target')
-rw-r--r--build/target4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/target b/build/target
index 66daa66..2aea7ae 100644
--- a/build/target
+++ b/build/target
@@ -283,7 +283,7 @@ namespace build
lookup<const value>
operator[] (const std::string& name) const
{
- return operator[] (variable_pool.find (name));
+ return operator[] (var_pool.find (name));
}
// Return a value suitable for assignment. See class scope for
@@ -304,7 +304,7 @@ namespace build
value&
append (const std::string& name)
{
- return append (variable_pool.find (name));
+ return append (var_pool.find (name));
}
public: