[clang-format] Fix a bug in aligning comments above PPDirective (#72791)
[llvm-project.git] / clang / unittests / Analysis / FlowSensitive / CMakeLists.txt
blob94160d949637cfa08818224edf519f01045ef6fc
1 set(LLVM_LINK_COMPONENTS
2   FrontendOpenMP
3   Support
4   )
6 add_clang_unittest(ClangAnalysisFlowSensitiveTests
7   ArenaTest.cpp
8   CFGMatchSwitchTest.cpp
9   ChromiumCheckModelTest.cpp
10   DataflowAnalysisContextTest.cpp
11   DataflowEnvironmentTest.cpp
12   DebugSupportTest.cpp
13   DeterminismTest.cpp
14   LoggerTest.cpp
15   MapLatticeTest.cpp
16   MatchSwitchTest.cpp
17   MultiVarConstantPropagationTest.cpp
18   RecordOpsTest.cpp
19   SignAnalysisTest.cpp
20   SimplifyConstraintsTest.cpp
21   SingleVarConstantPropagationTest.cpp
22   SolverTest.cpp
23   TestingSupport.cpp
24   TestingSupportTest.cpp
25   TransferBranchTest.cpp
26   TransferTest.cpp
27   TypeErasedDataflowAnalysisTest.cpp
28   UncheckedOptionalAccessModelTest.cpp
29   ValueTest.cpp
30   )
32 clang_target_link_libraries(ClangAnalysisFlowSensitiveTests
33   PRIVATE
34   clangAST
35   clangASTMatchers
36   clangAnalysis
37   clangAnalysisFlowSensitive
38   clangAnalysisFlowSensitiveModels
39   clangBasic
40   clangFrontend
41   clangLex
42   clangSerialization
43   clangTooling
44   )
46 target_link_libraries(ClangAnalysisFlowSensitiveTests
47   PRIVATE
48   clangTesting
49   LLVMTestingAnnotations
50   LLVMTestingSupport
51   )