]> git.tdb.fi Git - builder.git/blobdiff - source/builder.h
Implement --build-all
[builder.git] / source / builder.h
index 400be8a5de392fb0d37ad54db5e55b7db9650001..077d7e3cf7de6e8b914081fd8dad9cf484199098 100644 (file)
@@ -19,6 +19,7 @@ public:
        Builder(int, char **);
        unsigned get_verbose() const { return verbose; }
        bool     get_dry_run() const { return dry_run; }
+       bool     get_build_all() const { return build_all; }
        Package  *get_package(const std::string &);
        Target   *get_target(const std::string &);
        Target   *get_header(const std::string &, const std::string &, const std::list<std::string> &);
@@ -64,6 +65,7 @@ private:
        std::list<std::string> what_if;
        bool        chrome;
        bool        conf_all;
+       bool        build_all;
 
        int load_build_file(const Msp::Path::Path &);
        int create_targets();