X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fbuilder.h;h=af31f6942c4bf6117eead01cec3943628f60d2f6;hb=91fb392b7303262274cbffeaad268c0a680f906d;hp=9f792f828c78a3d4b0c327aa1d13868fcf6d7aac;hpb=5c16082773d2589c69fe4d7920e56fa66a96fc2b;p=builder.git diff --git a/source/builder.h b/source/builder.h index 9f792f8..af31f69 100644 --- a/source/builder.h +++ b/source/builder.h @@ -32,11 +32,8 @@ class Builder: public Msp::RegisteredApplication private: class Loader: public Msp::DataFile::ObjectLoader { - private: - Msp::FS::Path src; - public: - Loader(Builder &, const Msp::FS::Path &); + Loader(Builder &); private: void architecture(const std::string &); void binpkg(const std::string &); @@ -84,7 +81,6 @@ private: bool create_makefile; Msp::FS::Path prefix; Msp::FS::Path tempdir; - StringList warnings; static std::string usagemsg; static std::string helpmsg; @@ -94,31 +90,34 @@ public: ~Builder(); int main(); - bool get_dry_run() const { return dry_run; } PackageManager &get_package_manager() { return package_manager; } - SourcePackage *get_main_package() const { return main_pkg; } /** Looks up a target by name. Returns 0 if no such target exists. */ Target *get_target(const std::string &) const; const TargetMap &get_targets() const { return targets; } - const Msp::FS::Path &get_cwd() const { return cwd; } + const Msp::FS::Path &get_work_directory() const { return cwd; } const Architecture &get_current_arch() const { return *current_arch; } const Architecture &get_native_arch() const { return native_arch; } const Msp::FS::Path &get_prefix() const { return prefix; } const Msp::FS::Path &get_temp_directory() const { return tempdir; } - const StringList &get_warnings() const { return warnings; } const Toolchain &get_toolchain() const { return toolchain; } VirtualFileSystem &get_vfs() { return vfs; } const Logger &get_logger() const { return logger; } - /** Adds a target to both the target map and the new target queue. Called - from Target constructor. */ + /** Adds a target. It can later be retrieved by name. Called from Target + constructor. */ void add_target(Target *); + /** Adds a target that is a primary build goal. Such targets will be added + as dependencies of the "world" virtual target. If the target belongs to a + default component of the main package, it's also added to the "default" + virtual target. */ + void add_primary_target(Target &); + void problem(const std::string &, const std::string &); static void usage(const char *, const char *, bool); @@ -133,7 +132,7 @@ private: attempted. */ bool prepare_build(); - /** Supervises the build process, starting new actions when slots become + /** Supervises the build process, starting new tasks when slots become available. */ int do_build();