[InstCombine] Drop range attributes in `foldBitCeil` (#116641)
[llvm-project.git] / clang-tools-extra / clang-tidy / abseil / CMakeLists.txt
blobca7cc6782f1e6dba85055228d2f74fb117c59d12
1 set(LLVM_LINK_COMPONENTS
2   support
3   FrontendOpenMP
4   )
6 add_clang_library(clangTidyAbseilModule STATIC
7   AbseilTidyModule.cpp
8   CleanupCtadCheck.cpp
9   DurationAdditionCheck.cpp
10   DurationComparisonCheck.cpp
11   DurationConversionCastCheck.cpp
12   DurationDivisionCheck.cpp
13   DurationFactoryFloatCheck.cpp
14   DurationFactoryScaleCheck.cpp
15   DurationRewriter.cpp
16   DurationSubtractionCheck.cpp
17   DurationUnnecessaryConversionCheck.cpp
18   FasterStrsplitDelimiterCheck.cpp
19   NoInternalDependenciesCheck.cpp
20   NoNamespaceCheck.cpp
21   RedundantStrcatCallsCheck.cpp
22   StrCatAppendCheck.cpp
23   StringFindStartswithCheck.cpp
24   StringFindStrContainsCheck.cpp
25   TimeComparisonCheck.cpp
26   TimeSubtractionCheck.cpp
27   UpgradeDurationConversionsCheck.cpp
29   LINK_LIBS
30   clangTidy
31   clangTidyUtils
33   DEPENDS
34   omp_gen
35   ClangDriverOptions
36   )
38 clang_target_link_libraries(clangTidyAbseilModule
39   PRIVATE
40   clangAST
41   clangASTMatchers
42   clangBasic
43   clangLex
44   clangTooling
45   clangTransformer
46   )