]> git.tdb.fi Git - builder.git/blobdiff - source/virtualfilesystem.h
Make VirtualFileSystem able to find binaries
[builder.git] / source / virtualfilesystem.h
index 362d5db8674f836c2ff01a4bfc9a176251dd095d..a2ce05c4dad880c7f1bfea7c790a4d72c67a3256 100644 (file)
@@ -29,6 +29,8 @@ private:
 public:
        VirtualFileSystem(Builder &);
 
+       /** Gets an existing target associated with a path.  If no target has claimed
+       that path, 0 is returned. */
        FileTarget *get_target(const Msp::FS::Path &) const;
 
        /** Registers a target with the VFS.  A target may be registered at multiple
@@ -45,6 +47,11 @@ public:
        created. */
        FileTarget *find_library(const std::string &, const SearchPath &, LibMode);
 
+       /** Locates a binary.  The normal search path for binaries is used (usually
+       this means the PATH environment variable).  If a file is found but no target
+       is associated with it, a new package-less Executable target is created. */
+       FileTarget *find_binary(const std::string &);
+
 private:
        bool file_exists(const Msp::FS::Path &);
 };