X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fbuilder.h;h=e6eb0ea5c2843b3b813dbcc497a7379dfa40b71d;hb=3938f8030b1f62802decce19777ce70fdafaff10;hp=3004ed245ecedb860da199e28f8f4bdaecf2eb60;hpb=0d95fee118a3fcd78f153dca5721d9fe19b6f6bf;p=builder.git diff --git a/source/builder.h b/source/builder.h index 3004ed2..e6eb0ea 100644 --- a/source/builder.h +++ b/source/builder.h @@ -41,18 +41,15 @@ private: void architecture(const std::string &); void binpkg(const std::string &); void build_type(const std::string &); - void profile(const std::string &); void package(const std::string &); }; private: - typedef std::map BuildTypeMap; - PackageManager package_manager; Architecture native_arch; Architecture *current_arch; - BuildTypeMap build_types; + std::map build_types; BuildType *build_type; Toolchain toolchain; VirtualFileSystem vfs; @@ -75,6 +72,7 @@ public: const Architecture &get_current_arch() const { return *current_arch; } const Architecture &get_native_arch() const { return native_arch; } void set_build_type(const std::string &); + std::vector get_build_types() const; const BuildType &get_build_type() const { return *build_type; } BuildGraph &get_build_graph() { return build_graph; } void set_prefix(const Msp::FS::Path &); @@ -95,7 +93,8 @@ public: configured. */ void load_build_file(const Msp::FS::Path &, const Config::InputOptions *opts = 0, bool all = false); - void load_build_file(const Msp::FS::Path &, const Config::InputOptions &, bool); + /** Saves package configuration and dependency caches. */ + void save_caches(); /** Builds the goal targets. The build graph must be prepared first. */ int build(unsigned jobs = 1, bool dry_run = false, bool show_progress = false);