diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2019-10-10 10:49:53 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2019-10-10 10:49:53 +0200 |
commit | c36fa865ca63645aa0ee7962a60354da3911f532 (patch) | |
tree | 22785f23e57eae3fcc277de28bbb7deedaf63fd9 /doc | |
parent | 66de0d06e5b6c002cbc7d18e18685e3ea44d3848 (diff) |
Fix bug in documentation
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual.cli | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/manual.cli b/doc/manual.cli index 76dfbae..c1cfb1e 100644 --- a/doc/manual.cli +++ b/doc/manual.cli @@ -1544,7 +1544,7 @@ In this case the executable \c{buildfile} would look along these lines: \ include ../libhello/ # Include lib{hello}. -exe{hello}: {hxx cxx}{**} lib{hello} +exe{hello}: {hxx cxx}{**} ../libhello/lib{hello} \ Note also that \c{buildfile} inclusion should only be used for accessing @@ -2390,7 +2390,7 @@ Then our executable \c{buildfile} could look like this: \ include ../libhello/ # Include lib{hello}. -exe{hello}: {hxx cxx}{**} lib{hello} +exe{hello}: {hxx cxx}{**} ../libhello/lib{hello} \ What if instead \c{libhello} were a separate project? The inclusion approach @@ -3170,11 +3170,11 @@ and variable assignment. We've already used all three but let's see another example: \ -include ../libhello/ # Directive. +include ../libhello/ # Directive. -exe{hello}: {hxx cxx}{**} lib{hello} # Dependency declaration. +exe{hello}: {hxx cxx}{**} ../libhello/lib{hello} # Dependency declaration. -cxx.poptions += -DNDEBUG # Variable assignment (append). +cxx.poptions += -DNDEBUG # Variable assignment. \ There is also the scope opening (we've seen one in \c{export.build}) as well |