1 #ifndef INSTALLEDFILE_H_
2 #define INSTALLEDFILE_H_
4 #include "sourcepackage.h"
5 #include "filetarget.h"
8 Represents the installation of a file.
10 class InstalledFile: public FileTarget
17 InstalledFile(Builder &, const SourcePackage &, FileTarget &, const std::string & =std::string());
19 static Msp::FS::Path generate_target_path(const Msp::FS::Path &, const FileTarget &i, const std::string &);
22 virtual const char *get_type() const { return "InstalledFile"; }
23 FileTarget &get_source() const { return source; }
25 /** Sets a symlink for the file. A relative path will be rooted at the
26 directory the file resides in. */
27 void set_symlink(const Msp::FS::Path &);
29 const Msp::FS::Path &get_symlink() const { return link; }
31 virtual Target *get_real_target();
33 virtual void check_rebuild();