aboutsummaryrefslogtreecommitdiff
path: root/build2/test/init.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'build2/test/init.cxx')
-rw-r--r--build2/test/init.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/build2/test/init.cxx b/build2/test/init.cxx
index bd03f00..5b01bce 100644
--- a/build2/test/init.cxx
+++ b/build2/test/init.cxx
@@ -40,12 +40,12 @@ namespace build2
// Note: none are overridable.
//
- v.insert<bool> ("test");
- v.insert<name> ("test.input");
- v.insert<name> ("test.output");
- v.insert<name> ("test.roundtrip");
- v.insert<strings> ("test.options");
- v.insert<strings> ("test.arguments");
+ v.insert<bool> ("test", variable_visibility::target);
+ v.insert<name> ("test.input", variable_visibility::project);
+ v.insert<name> ("test.output", variable_visibility::project);
+ v.insert<name> ("test.roundtrip", variable_visibility::project);
+ v.insert<strings> ("test.options", variable_visibility::project);
+ v.insert<strings> ("test.arguments", variable_visibility::project);
}
}