1set(LLVM_LINK_COMPONENTS 2 FrontendOpenMP 3 Support 4 ) 5 6add_clang_unittest(StaticAnalysisTests 7 AnalyzerOptionsTest.cpp 8 APSIntTypeTest.cpp 9 BugReportInterestingnessTest.cpp 10 CallDescriptionTest.cpp 11 CallEventTest.cpp 12 ConflictingEvalCallsTest.cpp 13 ExprEngineVisitTest.cpp 14 FalsePositiveRefutationBRVisitorTest.cpp 15 IsCLibraryFunctionTest.cpp 16 MemRegionDescriptiveNameTest.cpp 17 NoStateChangeFuncVisitorTest.cpp 18 ParamRegionTest.cpp 19 RangeSetTest.cpp 20 RegisterCustomCheckersTest.cpp 21 StoreTest.cpp 22 SymbolReaperTest.cpp 23 SValSimplifyerTest.cpp 24 SValTest.cpp 25 TestReturnValueUnderConstruction.cpp 26 Z3CrosscheckOracleTest.cpp 27 ) 28 29clang_target_link_libraries(StaticAnalysisTests 30 PRIVATE 31 clangBasic 32 clangAnalysis 33 clangAST 34 clangASTMatchers 35 clangCrossTU 36 clangFrontend 37 clangSerialization 38 clangStaticAnalyzerCore 39 clangStaticAnalyzerFrontend 40 clangTooling 41 ) 42 43target_link_libraries(StaticAnalysisTests 44 PRIVATE 45 clangTesting 46 ) 47