// file : build/search -*- C++ -*- // copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC // license : MIT; see accompanying LICENSE file #ifndef BUILD_SEARCH #define BUILD_SEARCH #include namespace build { class target; class prerequisite; // Search for an existing target in this prerequisite's directory scope. // target* search_existing_target (prerequisite&); // Search for an existing file in the specified list of search paths. // target* search_existing_file (prerequisite&, const dir_paths&); // Create a new target in this prerequisite's directory scope. // target& create_new_target (prerequisite&); } #endif // BUILD_SEARCH