aboutsummaryrefslogtreecommitdiff
path: root/clang-tools-extra/clang-tidy/boost/CMakeLists.txt
blob: 9032771ec2fdcc66e71eaf1401946e82da1aa9c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
set(LLVM_LINK_COMPONENTS
  support
  FrontendOpenMP
  )

add_clang_library(clangTidyBoostModule STATIC
  BoostTidyModule.cpp
  UseRangesCheck.cpp
  UseToStringCheck.cpp

  LINK_LIBS
  clangTidy
  clangTidyUtils

  DEPENDS
  omp_gen
  ClangDriverOptions
  )

clang_target_link_libraries(clangTidyBoostModule
  PRIVATE
  clangAST
  clangASTMatchers
  clangBasic
  clangLex
  )