aboutsummaryrefslogtreecommitdiff
path: root/build2/cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-01-24 12:03:50 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-01-24 12:03:50 +0200
commitaec5f7309b2ee7210dc39de9c792f35273c73c10 (patch)
tree039064cbccb9ef01a5b93ca1659ae05137e61d3f /build2/cxx
parent4b507ea962169a8d19e4b37b940448eba97d87a4 (diff)
Differentiate extension printing according to stream verbosity
Diffstat (limited to 'build2/cxx')
-rw-r--r--build2/cxx/target.cxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/build2/cxx/target.cxx b/build2/cxx/target.cxx
index 5a909a5..c5b5080 100644
--- a/build2/cxx/target.cxx
+++ b/build2/cxx/target.cxx
@@ -19,6 +19,7 @@ namespace build2
&file::static_type,
&target_factory<hxx>,
&target_extension_var<ext_var, hxx_ext_def>,
+ nullptr,
&search_file,
false
};
@@ -30,6 +31,7 @@ namespace build2
&file::static_type,
&target_factory<ixx>,
&target_extension_var<ext_var, ixx_ext_def>,
+ nullptr,
&search_file,
false
};
@@ -41,6 +43,7 @@ namespace build2
&file::static_type,
&target_factory<txx>,
&target_extension_var<ext_var, txx_ext_def>,
+ nullptr,
&search_file,
false
};
@@ -52,6 +55,7 @@ namespace build2
&file::static_type,
&target_factory<cxx>,
&target_extension_var<ext_var, cxx_ext_def>,
+ nullptr,
&search_file,
false
};
@@ -63,6 +67,7 @@ namespace build2
&file::static_type,
&target_factory<h>,
&target_extension_var<ext_var, h_ext_def>,
+ nullptr,
&search_file,
false
};
@@ -74,6 +79,7 @@ namespace build2
&file::static_type,
&target_factory<c>,
&target_extension_var<ext_var, c_ext_def>,
+ nullptr,
&search_file,
false
};