X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fpackagemanager.h;h=b168d723e174739c3c652f376f7f1cefe407cda2;hb=c75c89d2425ab0c69e94d45a5d956286838bbc67;hp=2fbaca1c37c03dc0afafb3fa36d63402ec1535f3;hpb=9e3a8d36093be89242db0c472ffd8fe5c61ab0ec;p=builder.git diff --git a/source/packagemanager.h b/source/packagemanager.h index 2fbaca1..b168d72 100644 --- a/source/packagemanager.h +++ b/source/packagemanager.h @@ -28,6 +28,8 @@ private: SearchPath binpkg_files; bool no_externals; PackageMap packages; + Package *main_pkg; + std::set not_found; bool env_set; public: @@ -47,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; } @@ -65,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