summaryrefslogtreecommitdiff
path: root/clang-tidy/utils/CMakeLists.txt
blob: d391817d3c8fe779c3e909b16cbf7a9961a0bd18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
set(LLVM_LINK_COMPONENTS support)

add_clang_library(clangTidyUtils
  DeclRefExprUtils.cpp
  FixItHintUtils.cpp
  HeaderGuard.cpp
  HeaderFileExtensionsUtils.cpp
  IncludeInserter.cpp
  IncludeSorter.cpp
  LexerUtils.cpp
  TypeTraits.cpp

  LINK_LIBS
  clangAST
  clangASTMatchers
  clangBasic
  clangLex
  clangTidy
  )