You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tools/projmgr/src/ProjMgr.cpp
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,6 @@ Options:\n\
56
56
-N, --no-update-rte Skip creation of RTE directory and files\n\
57
57
-o,-O --output arg Base folder for output files, 'outdir' and 'tmpdir' (default \"Same as '*.csolution.yml'\")\n\
58
58
-q, --quiet Run silently, printing only error messages\n\
59
-
-R, --relative-paths Print paths relative to project or ${CMSIS_PACK_ROOT}\n\
60
59
-S, --context-set Select the context names from cbuild-set.yml for generating the target application\n\
61
60
-t, --toolchain arg Selection of the toolchain used in the project optionally with version\n\
62
61
-v, --verbose Enable verbose messages\n\
@@ -164,7 +163,7 @@ int ProjMgr::ParseCommandLine(int argc, char** argv) {
164
163
cxxopts::Option toolchain("t,toolchain", "Selection of the toolchain used in the project optionally with version", cxxopts::value<string>());
165
164
cxxopts::Option ymlOrder("yml-order", "Preserve order as specified in input yml", cxxopts::value<bool>()->default_value("false"));
166
165
cxxopts::Option contextSet("S,context-set", "Select the context names from cbuild-set.yml for generating the target application", cxxopts::value<bool>()->default_value("false"));
167
-
cxxopts::Option relativePaths("R,relative-paths", "Output paths relative to project or to CMSIS_PACK_ROOT", cxxopts::value<bool>()->default_value("false"));
166
+
cxxopts::Option relativePaths("R,relative-paths", "Output paths relative to csolution.yml or to CMSIS_PACK_ROOT", cxxopts::value<bool>()->default_value("false"));
168
167
cxxopts::Option frozenPacks("frozen-packs", "The list of packs from cbuild-pack.yml is frozen and raises error if not up-to-date", cxxopts::value<bool>()->default_value("false"));
169
168
cxxopts::Option updateIdx("update-idx", "Update cbuild-idx file with layer info", cxxopts::value<bool>()->default_value("false"));
170
169
cxxopts::Option quiet("q,quiet", "Run silently, printing only error messages", cxxopts::value<bool>()->default_value("false"));
@@ -178,7 +177,7 @@ int ProjMgr::ParseCommandLine(int argc, char** argv) {
0 commit comments