]> git.tdb.fi Git - builder.git/blobdiff - source/binarypackage.h
Force shared linking on Android
[builder.git] / source / binarypackage.h
index b47d468fe138ccf761c64d88b1f3169c2b3a51f6..13e2fd85ddc7a65397654400a9ece95913d308be 100644 (file)
@@ -10,32 +10,27 @@ Builder.
 class BinaryPackage: public Package
 {
 public:
-       class Loader: public Msp::DataFile::DerivedObjectLoader<BinaryPackage, Package>
+       class Loader: public Msp::DataFile::DerivedObjectLoader<BinaryPackage, Package::Loader>
        {
        public:
                Loader(BinaryPackage &);
        private:
                void build_info();
+               void header(const std::string &);
        };
 
 private:
-       bool need_path;
-       Msp::FS::Path path;
+       typedef std::list<std::string> HeaderList;
+
+       Msp::FS::Path base_path;
+       HeaderList headers;
 
 public:
        BinaryPackage(Builder &, const std::string &);
 
-       /**
-       Sets the path where the package's files were installed.  This is only useful
-       if the package doesn't use pkg-config.
-       */
-       void set_path(const Msp::FS::Path &);
-
-       bool get_need_path() const { return need_path; }
-
        static BinaryPackage *from_flags(Builder &, const std::string &, const std::vector<std::string> &);
 private:
-       virtual void create_build_info();
+       virtual void do_prepare();
 };
 
 #endif