aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2023-09-27 19:37:03 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2023-09-28 10:36:21 +0300
commitfed6c765fac5aaa412cf676d8907a63db52a5a63 (patch)
treefa789ac223aa0fe4aad7efc07aa0b538f67eb9db
parent5c595097000d31ce1aa016e0d376bddc30a8e746 (diff)
Update examples for builds package manifest values in manual
-rw-r--r--doc/manual.cli28
1 files changed, 14 insertions, 14 deletions
diff --git a/doc/manual.cli b/doc/manual.cli
index ef584c8..ded60d9 100644
--- a/doc/manual.cli
+++ b/doc/manual.cli
@@ -2234,20 +2234,20 @@ name or a parenthesized expression. Some examples (based on the
\l{https://ci.cppget.org/?build-configs cppget.org} deployment):
\
-builds: none ; None.
-builds: all ; All (suitable for libraries).
-builds: host ; All host (suitable for tools).
-builds: default ; All default.
-builds: host : &default ; Host default.
-builds: default legacy ; All default and legacy.
-builds: host : &( +default +legacy ) ; Host default and legacy.
-builds: -windows ; Default except Windows.
-builds: all : -windows ; All except Windows.
-builds: all : -mobile ; All except mobile.
-builds: all : &gcc ; All with GCC only.
-builds: all : &gcc-8+ ; All with GCC 8 and up only.
-builds: gcc : -optimized ; GCC without optimization.
-builds: gcc : &( +linux +macos ) ; GCC on Linux and Mac OS.
+builds: none ; None.
+builds: all ; All (suitable for libraries).
+builds: all : &host ; All host (suitable for tools).
+builds: default ; All default.
+builds: default : &host ; Default host.
+builds: default legacy ; All default and legacy.
+builds: default legacy : &host ; Default and legacy host.
+builds: -windows ; Default except Windows.
+builds: all : -windows ; All except Windows.
+builds: all : -mobile ; All except mobile.
+builds: all : &gcc ; All with GCC only.
+builds: all : &gcc-8+ ; All with GCC 8 and up only.
+builds: all : &gcc -optimized ; All GCC without optimization.
+builds: all : &gcc &( +linux +macos ) ; All GCC on Linux and Mac OS.
\
Notice that the colon and parentheses must be separated with spaces from both