[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang-tools-extra / clang-tidy / hicpp / CMakeLists.txt
bloba25c21db4425a1551298512a6c545bff736daf2d
1 set(LLVM_LINK_COMPONENTS
2   FrontendOpenMP
3   Support
4   )
6 add_clang_library(clangTidyHICPPModule
7   ExceptionBaseclassCheck.cpp
8   HICPPTidyModule.cpp
9   MultiwayPathsCoveredCheck.cpp
10   NoAssemblerCheck.cpp
11   SignedBitwiseCheck.cpp
13   LINK_LIBS
14   clangTidy
15   clangTidyBugproneModule
16   clangTidyCppCoreGuidelinesModule
17   clangTidyGoogleModule
18   clangTidyMiscModule
19   clangTidyModernizeModule
20   clangTidyPerformanceModule
21   clangTidyReadabilityModule
22   clangTidyUtils
24   DEPENDS
25   omp_gen
26   )
28 clang_target_link_libraries(clangTidyHICPPModule
29   PRIVATE
30   clangAST
31   clangASTMatchers
32   clangBasic
33   clangLex
34   clangSerialization
35   )