Lines Matching full:use
11 - **Indentation**: Use **2 spaces** for indentation. Avoid tabs to ensure
14 - **Empty Lines**: Use empty lines to separate logically distinct sections
18 Use ``if(...)`` instead of ``if (...)``.
35 - **Lowercase Commands**: Always use **lowercase** CMake commands (e.g.,
64 - **Use Uppercase for Cache Variables or variables shared across CMake files**:
65 When defining cache variables using ``option`` or ``set(... CACHE ...)``, use
73 - **Use Lowercase for Local Variables**: For local variables within CMake
74 files, use **lowercase** or **snake_case**.
80 - **Consistent Prefixing**: Use consistent prefixes for variables to avoid name
112 - Use CMake variables (``CMAKE_SOURCE_DIR``, ``CMAKE_BINARY_DIR``,
122 - Use ``if``, ``elseif``, and ``else`` with proper indentation, and close with
134 - Use comments to document complex logic in the CMake files.