diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2023-07-19 10:38:09 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2023-07-19 10:38:09 +0200 |
commit | c48b045245e3fa019d3fe41b7ea5e77369629156 (patch) | |
tree | addc2285ee08e5cc725e37623651c60c284dfb28 /doc | |
parent | 984c9b5e9bc6636a1e68935cef946918fdf68fa2 (diff) |
Fix bug in example in documentation
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual.cli | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/doc/manual.cli b/doc/manual.cli index c8f2f4a..ef584c8 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: 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. \ Notice that the colon and parentheses must be separated with spaces from both |