aboutsummaryrefslogtreecommitdiff
path: root/build2/target
diff options
context:
space:
mode:
Diffstat (limited to 'build2/target')
-rw-r--r--build2/target12
1 files changed, 12 insertions, 0 deletions
diff --git a/build2/target b/build2/target
index 7653da6..2eb6a2c 100644
--- a/build2/target
+++ b/build2/target
@@ -1029,6 +1029,18 @@ namespace build2
return find (target_key {&type, &dir, &out, &name, ext}, trace);
}
+ template <typename T>
+ T*
+ find (const target_type& type,
+ const dir_path& dir,
+ const dir_path& out,
+ const string& name,
+ const optional<string>& ext,
+ tracer& trace) const
+ {
+ return static_cast<T*> (find (type, dir, out, name, ext, trace));
+ }
+
// As above but ignore the extension.
//
template <typename T>