1set(LLVM_LINK_COMPONENTS 2 support 3 FrontendOpenMP 4 ) 5 6add_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 28 29 LINK_LIBS 30 clangTidy 31 clangTidyUtils 32 33 DEPENDS 34 omp_gen 35 ClangDriverOptions 36 ) 37 38clang_target_link_libraries(clangTidyAbseilModule 39 PRIVATE 40 clangAST 41 clangASTMatchers 42 clangBasic 43 clangLex 44 clangTooling 45 clangTransformer 46 ) 47