diff options
Diffstat (limited to 'src/build.h')
-rw-r--r-- | src/build.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/build.h b/src/build.h index 1db3f5c..7be7517 100644 --- a/src/build.h +++ b/src/build.h @@ -11,16 +11,22 @@ #include "settings.h" #include "tasks.h" +//! Dry-run returns number of dirty tasks but otherwise does nothing. int build(const Settings& settings, const std::string& name, const std::list<std::shared_ptr<Task>>& tasks, - const std::list<std::shared_ptr<Task>>& all_tasks); + const std::list<std::shared_ptr<Task>>& all_tasks, + bool dryrun = false); +//! Dry-run returns number of dirty tasks but otherwise does nothing. int build(const Settings& settings, const std::string& name, - const std::list<std::shared_ptr<Task>>& all_tasks); + const std::list<std::shared_ptr<Task>>& all_tasks, + bool dryrun = false); +//! Dry-run returns number of dirty tasks but otherwise does nothing. int build(const Settings& settings, const std::string& name, const std::vector<Target>& targets, - const std::list<std::shared_ptr<Task>>& all_tasks); + const std::list<std::shared_ptr<Task>>& all_tasks, + bool dryrun = false); |