From e879c347f4f05dac5405bcc45ae2d5c9dde5447c Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 30 Aug 2016 15:30:39 +0200 Subject: Add support for target visibility, use for dist, test, install This means we can no longer write: install = false Now it should be: *: install = false --- build2/test/init.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'build2/test/init.cxx') 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 ("test"); - v.insert ("test.input"); - v.insert ("test.output"); - v.insert ("test.roundtrip"); - v.insert ("test.options"); - v.insert ("test.arguments"); + v.insert ("test", variable_visibility::target); + v.insert ("test.input", variable_visibility::project); + v.insert ("test.output", variable_visibility::project); + v.insert ("test.roundtrip", variable_visibility::project); + v.insert ("test.options", variable_visibility::project); + v.insert ("test.arguments", variable_visibility::project); } } -- cgit v1.1