aboutsummaryrefslogtreecommitdiff
path: root/build2/bin
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/bin
parent4b507ea962169a8d19e4b37b940448eba97d87a4 (diff)
Differentiate extension printing according to stream verbosity
Diffstat (limited to 'build2/bin')
-rw-r--r--build2/bin/target.cxx7
1 files changed, 7 insertions, 0 deletions
diff --git a/build2/bin/target.cxx b/build2/bin/target.cxx
index 136de9c..de51fc7 100644
--- a/build2/bin/target.cxx
+++ b/build2/bin/target.cxx
@@ -28,6 +28,7 @@ namespace build2
&file::static_type,
&obja_factory,
&target_extension_assert,
+ nullptr,
&search_target, // Note: not _file(); don't look for an existing file.
false
};
@@ -50,6 +51,7 @@ namespace build2
&file::static_type,
&objso_factory,
&target_extension_assert,
+ nullptr,
&search_target, // Note: not _file(); don't look for an existing file.
false
};
@@ -76,6 +78,7 @@ namespace build2
&target::static_type,
&obj_factory,
nullptr,
+ nullptr,
&search_target,
false
};
@@ -98,6 +101,7 @@ namespace build2
&file::static_type,
&target_factory<exe>,
&target_extension_fix<exe_ext>,
+ nullptr,
&search_file,
false
};
@@ -135,6 +139,7 @@ namespace build2
&file::static_type,
&liba_factory,
&target_extension_fix<a_ext>,
+ nullptr,
&search_file,
false
};
@@ -160,6 +165,7 @@ namespace build2
&file::static_type,
&libso_factory,
&target_extension_fix<so_ext>,
+ nullptr,
&search_file,
false
};
@@ -195,6 +201,7 @@ namespace build2
&target::static_type,
&lib_factory,
nullptr,
+ nullptr,
&search_target,
false
};