]> git.tdb.fi Git - builder.git/blobdiff - source/packagemanager.h
Recent versions of sigc++ require C++11
[builder.git] / source / packagemanager.h
index 9fb373ec48152b70a16a5e56b93604c08176b38c..b168d723e174739c3c652f376f7f1cefe407cda2 100644 (file)
@@ -28,6 +28,7 @@ private:
        SearchPath binpkg_files;
        bool no_externals;
        PackageMap packages;
+       Package *main_pkg;
        std::set<std::string> not_found;
        bool env_set;
 
@@ -48,7 +49,11 @@ public:
        void add_package(Package *);
 
        /** Returns a package from the cache. */
-       Package *get_package(const std::string &);
+       Package *get_package(const std::string &) const;
+
+       /** Returns the package that was added first.  This should be considered
+       the primary build target. */
+       Package &get_main_package() const;
 
        const PackageMap &get_packages() const { return packages; }
 
@@ -66,6 +71,9 @@ private:
        /** Determines the file containing a binary package.  The file is expected
        to be named after the package. */
        Msp::FS::Path get_binary_package_file(const std::string &);
+
+public:
+       void save_all_caches() const;
 };
 
 #endif