| /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying |
| file Copyright.txt or https://cmake.org/licensing for details. */ |
| #include <clang-tidy/ClangTidyModule.h> |
| #include <clang-tidy/ClangTidyModuleRegistry.h> |
| #include "UseCmstrlenCheck.h" |
| class CMakeClangTidyModule : public ClangTidyModule |
| void addCheckFactories(ClangTidyCheckFactories& CheckFactories) override |
| CheckFactories.registerCheck<UseCmstrlenCheck>("cmake-use-cmstrlen"); |
| static ClangTidyModuleRegistry::Add<CMakeClangTidyModule> X( |
| "cmake-clang-tidy", "Adds lint checks for the CMake code base."); |