From 3c2185bf17b1c1a631366aa11591da3e3beb51eb Mon Sep 17 00:00:00 2001 From: Paul Cristian Sarbu Date: Tue, 7 Mar 2023 14:28:56 +0100 Subject: Just-mr: Add --local-launcher option Also update just-mr section-1 man page --- src/other_tools/just_mr/utils.hpp | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'src/other_tools/just_mr/utils.hpp') diff --git a/src/other_tools/just_mr/utils.hpp b/src/other_tools/just_mr/utils.hpp index f5cc7de9..bfd81f16 100644 --- a/src/other_tools/just_mr/utils.hpp +++ b/src/other_tools/just_mr/utils.hpp @@ -48,18 +48,19 @@ std::vector const kTakeOver = {"bindings", struct JustSubCmdFlags { bool config; bool build_root; + bool launch; }; // ordered, so that we have replicability std::map const kKnownJustSubcommands{ - {"version", {false /*config*/, false /*build_root*/}}, - {"describe", {true /*config*/, false /*build_root*/}}, - {"analyse", {true /*config*/, true /*build_root*/}}, - {"build", {true /*config*/, true /*build_root*/}}, - {"install", {true /*config*/, true /*build_root*/}}, - {"rebuild", {true /*config*/, true /*build_root*/}}, - {"install-cas", {false /*config*/, true /*build_root*/}}, - {"gc", {false /*config*/, true /*build_root*/}}}; + {"version", {false /*config*/, false /*build_root*/, false /*launch*/}}, + {"describe", {true /*config*/, false /*build_root*/, false /*launch*/}}, + {"analyse", {true /*config*/, true /*build_root*/, false /*launch*/}}, + {"build", {true /*config*/, true /*build_root*/, true /*launch*/}}, + {"install", {true /*config*/, true /*build_root*/, true /*launch*/}}, + {"rebuild", {true /*config*/, true /*build_root*/, true /*launch*/}}, + {"install-cas", {false /*config*/, true /*build_root*/, false /*launch*/}}, + {"gc", {false /*config*/, true /*build_root*/, false /*launch*/}}}; nlohmann::json const kDefaultConfigLocations = nlohmann::json::array( {{{"root", "workspace"}, {"path", "repos.json"}}, -- cgit v1.2.3