diff options
Diffstat (limited to 'src/tasks.h')
-rw-r--r-- | src/tasks.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tasks.h b/src/tasks.h index 26cd757..7700d49 100644 --- a/src/tasks.h +++ b/src/tasks.h @@ -17,7 +17,7 @@ struct Target }; //! Get list of all registered targets -const std::deque<Target>& getTargets(const ctor::Settings& settings, +const std::deque<Target>& getTargets(const ctor::settings& settings, bool resolve_externals = true); //! Returns next dirty task from the dirtyTasks list that has all its dependencies @@ -29,12 +29,12 @@ std::shared_ptr<Task> getNextTask(const std::set<std::shared_ptr<Task>>& allTask //! Get list of tasks filtered by name including each of their direct //! dependency tasks (ie. objects tasks from their sources). -std::set<std::shared_ptr<Task>> getTasks(const ctor::Settings& settings, +std::set<std::shared_ptr<Task>> getTasks(const ctor::settings& settings, const std::vector<std::string> names = {}, bool resolve_externals = true); //! Generate list of targets from a single configuration, including the final //! link target and all its objects files (if any). std::set<std::shared_ptr<Task>> taskFactory(const ctor::BuildConfiguration& config, - const ctor::Settings& settings, + const ctor::settings& settings, const std::string& sourceDir); |