X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fpackagemanager.h;h=b168d723e174739c3c652f376f7f1cefe407cda2;hb=407b96515a5246384847d1835a2d69704e941ea1;hp=9fb373ec48152b70a16a5e56b93604c08176b38c;hpb=7c61a1e64153bac91431e1a72d946208dd61eb30;p=builder.git diff --git a/source/packagemanager.h b/source/packagemanager.h index 9fb373e..b168d72 100644 --- a/source/packagemanager.h +++ b/source/packagemanager.h @@ -28,6 +28,7 @@ private: SearchPath binpkg_files; bool no_externals; PackageMap packages; + Package *main_pkg; std::set 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