brintos

brintos / llvm-project-archived public Read only

0
0
Text · 834 B · b83a1e9 Raw
49 lines · plain
1set(LLVM_LINK_COMPONENTS2  FrontendOpenMP3  Support4  )5 6add_clang_library(clangTidyUtils STATIC7  Aliasing.cpp8  ASTUtils.cpp9  BracesAroundStatement.cpp10  DeclRefExprUtils.cpp11  DesignatedInitializers.cpp12  ExceptionAnalyzer.cpp13  ExceptionSpecAnalyzer.cpp14  ExprSequence.cpp15  FileExtensionsUtils.cpp16  FormatStringConverter.cpp17  FixItHintUtils.cpp18  HeaderGuard.cpp19  IncludeInserter.cpp20  IncludeSorter.cpp21  LexerUtils.cpp22  Matchers.cpp23  NamespaceAliaser.cpp24  OptionsUtils.cpp25  RenamerClangTidyCheck.cpp26  TransformerClangTidyCheck.cpp27  TypeTraits.cpp28  UseRangesCheck.cpp29  UsingInserter.cpp30 31  LINK_LIBS32  clangTidy33 34  DEPENDS35  omp_gen36  ClangDriverOptions37  )38 39clang_target_link_libraries(clangTidyUtils40  PRIVATE41  clangAST42  clangASTMatchers43  clangBasic44  clangLex45  clangSema46  clangTooling47  clangTransformer48  )49