[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang-tools-extra / clang-tidy / portability / CMakeLists.txt
blob01a86d686daa76dbe09716b504b3f548f09a4f40
1 set(LLVM_LINK_COMPONENTS
2   FrontendOpenMP
3   Support
4   TargetParser
5   )
7 add_clang_library(clangTidyPortabilityModule
8   PortabilityTidyModule.cpp
9   RestrictSystemIncludesCheck.cpp
10   SIMDIntrinsicsCheck.cpp
11   StdAllocatorConstCheck.cpp
13   LINK_LIBS
14   clangTidy
15   clangTidyUtils
17   DEPENDS
18   omp_gen
19   ClangDriverOptions
20   )
22 clang_target_link_libraries(clangTidyPortabilityModule
23   PRIVATE
24   clangAST
25   clangASTMatchers
26   clangBasic
27   clangLex
28   clangTooling
29   )