1 #ifndef BINARYPACKAGE_H_
2 #define BINARYPACKAGE_H_
7 Represents a package that is installed on the system, but can't be built by
10 class BinaryPackage: public Package
13 class Loader: public Msp::DataFile::DerivedObjectLoader<BinaryPackage, Package>
16 Loader(BinaryPackage &);
26 BinaryPackage(Builder &, const std::string &);
29 Sets the path where the package's files were installed. This is only useful
30 if the package doesn't use pkg-config.
32 void set_path(const Msp::FS::Path &);
34 bool get_need_path() const { return need_path; }
36 static BinaryPackage *from_flags(Builder &, const std::string &, const std::vector<std::string> &);
38 virtual void create_build_info();