diff options
author | Kyle Edwards <kyle.edwards@kitware.com> | 2023-06-05 20:42:12 (GMT) |
---|---|---|
committer | Kyle Edwards <kyle.edwards@kitware.com> | 2023-06-06 14:45:22 (GMT) |
commit | 36ec89639ad84e194446795e36b69ab19e57e731 (patch) | |
tree | 106e619e527997387b09122fc5d513f6107af4c9 /Help/prop_sf/SKIP_LINTING.rst | |
parent | 3760ac9845e3c0d163eb1b4d83ab5b2f367507aa (diff) | |
download | CMake-36ec89639ad84e194446795e36b69ab19e57e731.zip CMake-36ec89639ad84e194446795e36b69ab19e57e731.tar.gz CMake-36ec89639ad84e194446795e36b69ab19e57e731.tar.bz2 |
VERIFY_INTERFACE_HEADER_SETS: Skip header files that have SKIP_LINTING
Fixes: #24972
Diffstat (limited to 'Help/prop_sf/SKIP_LINTING.rst')
-rw-r--r-- | Help/prop_sf/SKIP_LINTING.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Help/prop_sf/SKIP_LINTING.rst b/Help/prop_sf/SKIP_LINTING.rst index 19592a8..0e0a616 100644 --- a/Help/prop_sf/SKIP_LINTING.rst +++ b/Help/prop_sf/SKIP_LINTING.rst @@ -7,8 +7,9 @@ This property allows you to exclude a specific source file from the linting process. The linting process involves running tools such as :prop_tgt:`<LANG>_CPPLINT`, :prop_tgt:`<LANG>_CLANG_TIDY`, :prop_tgt:`<LANG>_CPPCHECK`, and :prop_tgt:`<LANG>_INCLUDE_WHAT_YOU_USE` -on the source files. By setting ``SKIP_LINTING`` on a source file, -the mentioned linting tools will not be executed for that +on the source files, as well as compiling header files as part of +:prop_tgt:`VERIFY_INTERFACE_HEADER_SETS`. By setting ``SKIP_LINTING`` on a +source file, the mentioned linting tools will not be executed for that particular file. Example |