repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[Workflow] Try to fix code-formatter failing to find changes in some cases.
[llvm-project.git]
/
clang-tools-extra
/
clang-tidy
/
mpi
/
CMakeLists.txt
blob
717683042f5247ba79bf0575f47860de04416e01
1
set(LLVM_LINK_COMPONENTS
2
FrontendOpenMP
3
Support
4
)
5
6
add_clang_library(clangTidyMPIModule
7
BufferDerefCheck.cpp
8
MPITidyModule.cpp
9
TypeMismatchCheck.cpp
10
11
LINK_LIBS
12
clangTidy
13
clangTidyUtils
14
15
DEPENDS
16
omp_gen
17
ClangDriverOptions
18
)
19
20
clang_target_link_libraries(clangTidyMPIModule
21
PRIVATE
22
clangAnalysis
23
clangAST
24
clangASTMatchers
25
clangBasic
26
clangLex
27
clangTooling
28
clangStaticAnalyzerCheckers
29
)