aboutsummaryrefslogtreecommitdiff
path: root/build2/algorithm.ixx
diff options
context:
space:
mode:
Diffstat (limited to 'build2/algorithm.ixx')
-rw-r--r--build2/algorithm.ixx11
1 files changed, 7 insertions, 4 deletions
diff --git a/build2/algorithm.ixx b/build2/algorithm.ixx
index 3f0bab9..3930412 100644
--- a/build2/algorithm.ixx
+++ b/build2/algorithm.ixx
@@ -21,29 +21,32 @@ namespace build2
search (const target_type& t, const prerequisite_key& k)
{
return search (
- prerequisite_key
- {k.proj, {&t, k.tk.dir, k.tk.name, k.tk.ext}, k.scope});
+ prerequisite_key {
+ k.proj, {&t, k.tk.dir, k.tk.out, k.tk.name, k.tk.ext}, k.scope});
}
inline target&
search (const target_type& type,
const dir_path& dir,
+ const dir_path& out,
const string& name,
const string* ext,
scope* scope)
{
return search (
- prerequisite_key {nullptr, {&type, &dir, &name, ext}, scope});
+ prerequisite_key {nullptr, {&type, &dir, &out, &name, ext}, scope});
}
template <typename T>
inline T&
search (const dir_path& dir,
+ const dir_path& out,
const string& name,
const string* ext,
scope* scope)
{
- return static_cast<T&> (search (T::static_type, dir, name, ext, scope));
+ return static_cast<T&> (
+ search (T::static_type, dir, out, name, ext, scope));
}
pair<const rule*, match_result>