From 967be9e750221ab2ab783f95df79bb26d290a45e Mon Sep 17 00:00:00 2001 From: Martial Simon Date: Mon, 15 Sep 2025 01:07:58 +0200 Subject: add: added projects --- tiger-compiler/src/task/tasks.hh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 tiger-compiler/src/task/tasks.hh (limited to 'tiger-compiler/src/task/tasks.hh') diff --git a/tiger-compiler/src/task/tasks.hh b/tiger-compiler/src/task/tasks.hh new file mode 100644 index 0000000..b18943d --- /dev/null +++ b/tiger-compiler/src/task/tasks.hh @@ -0,0 +1,23 @@ +/** + ** \file task/tasks.hh + ** \brief Task module related tasks. + */ + +#pragma once + +#include + +namespace task::tasks +{ + TASK_GROUP("0. Tasks"); + + /// List all the existing tasks. + TASK_DECLARE("task-list", "list registered tasks", tasks_list, ""); + /// Dump task graph. + TASK_DECLARE("task-graph", "show task graph", tasks_graph, ""); + /// List the selected tasks in order. + TASK_DECLARE("task-selection", "list tasks to be run", tasks_selection, ""); + /// Ask for a time report at the end of the execution. + TASK_DECLARE("time-report", "report execution times", time_report, ""); + +} // namespace task::tasks -- cgit v1.2.3