• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1set(LLVM_LINK_COMPONENTS
2  FrontendOpenMP
3  Support
4  )
5
6add_clang_library(clangTidyPortabilityModule
7  PortabilityTidyModule.cpp
8  RestrictSystemIncludesCheck.cpp
9  SIMDIntrinsicsCheck.cpp
10
11  LINK_LIBS
12  clangTidy
13  clangTidyUtils
14
15  DEPENDS
16  omp_gen
17  )
18
19clang_target_link_libraries(clangTidyPortabilityModule
20  PRIVATE
21  clangAST
22  clangASTMatchers
23  clangBasic
24  clangLex
25  clangTooling
26  )
27