| See :ref:`built-in-snippets` for a list of snippets that are provided by |
| Snippets have names. You use snippets by giving their names to the build |
| To use a snippet named ``foo`` when building an application ``app``: |
| To use multiple snippets: |
| west build -S snippet1 -S snippet2 [...] app |
| If you are running CMake directly instead of using ``west build``, use the |
| ``SNIPPET`` variable. This is a whitespace- or semicolon-separated list of |
| snippet names you want to use. For example: |
| cmake -Sapp -Bbuild -DSNIPPET="snippet1;snippet2" [...] |