aboutsummaryrefslogtreecommitdiff
path: root/build/search
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-04-17 15:08:05 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-04-17 15:08:05 +0200
commit8f8ab1e8f6d85748547c0d0e9987eed4f3c3e17b (patch)
tree1ef9a9f271d688f1f6f2eb3fc5a8972574677433 /build/search
parent6535bf6175af32e2514faf75d2742424751a783b (diff)
Add support for target groups, use to handle obj/obja/objso object targets
Diffstat (limited to 'build/search')
-rw-r--r--build/search12
1 files changed, 6 insertions, 6 deletions
diff --git a/build/search b/build/search
index dfbe32e..1f90a8a 100644
--- a/build/search
+++ b/build/search
@@ -10,22 +10,22 @@
namespace build
{
class target;
- class prerequisite;
+ class prerequisite_key;
- // Search for an existing target in this prerequisite's directory scope.
+ // Search for an existing target in this prerequisite's scope.
//
target*
- search_existing_target (prerequisite&);
+ search_existing_target (const prerequisite_key&);
// Search for an existing file in the specified list of search paths.
//
target*
- search_existing_file (prerequisite&, const dir_paths&);
+ search_existing_file (const prerequisite_key&, const dir_paths&);
- // Create a new target in this prerequisite's directory scope.
+ // Create a new target in this prerequisite's scope.
//
target&
- create_new_target (prerequisite&);
+ create_new_target (const prerequisite_key&);
}
#endif // BUILD_SEARCH