diff options
-rw-r--r-- | doc/manual.cli | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/manual.cli b/doc/manual.cli index 55b0443..0de3247 100644 --- a/doc/manual.cli +++ b/doc/manual.cli @@ -103,6 +103,20 @@ the tree. This can be achieved with the following pattern: exe{hello}: cxx{** -***/test/**} \ +Similarly, if we wanted to exclude all source files that have the \c{-test} +suffix: + +\ +exe{hello}: cxx{** -**-test} +\ + +In contrast, the following pattern only excludes such files from the top +directory: + +\ +exe{hello}: cxx{** -*-test} +\ + If many inclusions or exclusions need to be specified, then an inclusion/exclusion group can be used. For example: |