summaryrefslogtreecommitdiff
path: root/src/tasks.h
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2023-01-11 18:19:07 +0100
committerBent Bisballe Nyeng <deva@aasimon.org>2023-01-11 18:19:07 +0100
commiteb00551f0e990495c6d7533ed193f459cb449665 (patch)
tree51ba33b836e6d870378e6d614b1387787e3c7e2b /src/tasks.h
parent2b26fff20c1684bc96eac25cfb24e1230f9ca3ce (diff)
Rename Settings struct to setings
Diffstat (limited to 'src/tasks.h')
-rw-r--r--src/tasks.h6
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);