| 1 | set(LLVM_LINK_COMPONENTS |
|---|---|
| 2 | Support |
| 3 | ) |
| 4 | |
| 5 | add_clang_unittest(ClangAnalysisTests |
| 6 | CFGTest.cpp |
| 7 | CloneDetectionTest.cpp |
| 8 | ExprMutationAnalyzerTest.cpp |
| 9 | ) |
| 10 | |
| 11 | target_link_libraries(ClangAnalysisTests |
| 12 | PRIVATE |
| 13 | clangAnalysis |
| 14 | clangAST |
| 15 | clangASTMatchers |
| 16 | clangBasic |
| 17 | clangFrontend |
| 18 | clangSerialization |
| 19 | clangTooling |
| 20 | ) |
| 21 |