X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fbuilder.h;h=70ca861bc64cefb22c13c7d91c98eacfbef61a15;hb=c7df14c38a87ceca13df47fa700d3f9fa250be91;hp=7998a393eb4ab9f5a513dbcb544dba7836a71a3b;hpb=1496723307ed47b60d3116623ba383e85b50efef;p=builder.git diff --git a/source/builder.h b/source/builder.h index 7998a39..70ca861 100644 --- a/source/builder.h +++ b/source/builder.h @@ -74,6 +74,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 &); @@ -94,7 +95,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);