[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang-tools-extra / clang-tidy / readability / CMakeLists.txt
blob5452c2d48a461737be794367eec220c30fe21328
1 set(LLVM_LINK_COMPONENTS
2   FrontendOpenMP
3   Support
4   )
6 add_clang_library(clangTidyReadabilityModule
7   AvoidConstParamsInDecls.cpp
8   AvoidUnconditionalPreprocessorIfCheck.cpp
9   BracesAroundStatementsCheck.cpp
10   ConstReturnTypeCheck.cpp
11   ContainerContainsCheck.cpp
12   ContainerDataPointerCheck.cpp
13   ContainerSizeEmptyCheck.cpp
14   ConvertMemberFunctionsToStatic.cpp
15   DeleteNullPointerCheck.cpp
16   DuplicateIncludeCheck.cpp
17   ElseAfterReturnCheck.cpp
18   FunctionCognitiveComplexityCheck.cpp
19   FunctionSizeCheck.cpp
20   IdentifierLengthCheck.cpp
21   IdentifierNamingCheck.cpp
22   ImplicitBoolConversionCheck.cpp
23   InconsistentDeclarationParameterNameCheck.cpp
24   IsolateDeclarationCheck.cpp
25   MagicNumbersCheck.cpp
26   MakeMemberFunctionConstCheck.cpp
27   MisleadingIndentationCheck.cpp
28   MisplacedArrayIndexCheck.cpp
29   NamedParameterCheck.cpp
30   NamespaceCommentCheck.cpp
31   NonConstParameterCheck.cpp
32   OperatorsRepresentationCheck.cpp
33   QualifiedAutoCheck.cpp
34   ReadabilityTidyModule.cpp
35   RedundantAccessSpecifiersCheck.cpp
36   RedundantControlFlowCheck.cpp
37   RedundantDeclarationCheck.cpp
38   RedundantFunctionPtrDereferenceCheck.cpp
39   RedundantMemberInitCheck.cpp
40   RedundantPreprocessorCheck.cpp
41   RedundantSmartptrGetCheck.cpp
42   RedundantStringCStrCheck.cpp
43   RedundantStringInitCheck.cpp
44   ReferenceToConstructedTemporaryCheck.cpp
45   SimplifyBooleanExprCheck.cpp
46   SimplifySubscriptExprCheck.cpp
47   StaticAccessedThroughInstanceCheck.cpp
48   StaticDefinitionInAnonymousNamespaceCheck.cpp
49   StringCompareCheck.cpp
50   SuspiciousCallArgumentCheck.cpp
51   UniqueptrDeleteReleaseCheck.cpp
52   UppercaseLiteralSuffixCheck.cpp
53   UseAnyOfAllOfCheck.cpp
55   LINK_LIBS
56   clangTidy
57   clangTidyUtils
59   DEPENDS
60   omp_gen
61   ClangDriverOptions
62   )
64 clang_target_link_libraries(clangTidyReadabilityModule
65   PRIVATE
66   clangAnalysis
67   clangAST
68   clangASTMatchers
69   clangBasic
70   clangLex
71   clangTooling
72   )