[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / lib / Analysis / CMakeLists.txt
blobea6cb59e8e1997eb7e67cfd6608c2db1c57b56a0
1 set(LLVM_LINK_COMPONENTS
2   FrontendOpenMP
3   Support
4   )
6 add_clang_library(clangAnalysis
7   AnalysisDeclContext.cpp
8   BodyFarm.cpp
9   CalledOnceCheck.cpp
10   CFG.cpp
11   CFGReachabilityAnalysis.cpp
12   CFGStmtMap.cpp
13   CallGraph.cpp
14   CloneDetection.cpp
15   CocoaConventions.cpp
16   ConstructionContext.cpp
17   Consumed.cpp
18   CodeInjector.cpp
19   Dominators.cpp
20   ExprMutationAnalyzer.cpp
21   IssueHash.cpp
22   LiveVariables.cpp
23   MacroExpansionContext.cpp
24   ObjCNoReturn.cpp
25   PathDiagnostic.cpp
26   PostOrderCFGView.cpp
27   ProgramPoint.cpp
28   ReachableCode.cpp
29   RetainSummaryManager.cpp
30   ThreadSafety.cpp
31   ThreadSafetyCommon.cpp
32   ThreadSafetyLogical.cpp
33   ThreadSafetyTIL.cpp
34   UninitializedValues.cpp
35   UnsafeBufferUsage.cpp
37   LINK_LIBS
38   clangAST
39   clangASTMatchers
40   clangBasic
41   clangLex
43   DEPENDS
44   omp_gen
45   )
47 add_subdirectory(plugins)
48 add_subdirectory(FlowSensitive)