From 0855b2177b62fa719eff6643e3b433c41eecf142 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Sun, 21 Nov 2021 21:09:42 +0100 Subject: Don't warn about missing external config cache values when bootstrapping. --- src/tasks.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/tasks.h') diff --git a/src/tasks.h b/src/tasks.h index aaa3510..f2a77d4 100644 --- a/src/tasks.h +++ b/src/tasks.h @@ -20,7 +20,8 @@ struct Target }; //! Get list of all registered targets -const std::deque& getTargets(const Settings& settings); +const std::deque& getTargets(const Settings& settings, + bool resolve_externals = true); //! Returns next dirty task from the dirtyTasks list that has all its dependencies //! fulfilled. @@ -32,7 +33,8 @@ std::shared_ptr getNextTask(const std::list>& allTas //! Get list of tasks filtered by name including each of their direct //! dependency tasks (ie. objects tasks from their sources). std::list> getTasks(const Settings& settings, - const std::vector names = {}); + const std::vector 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). -- cgit v1.2.3