[DFAJumpThreading] Remove incoming StartBlock from all phis when unfolding select...
[llvm-project.git] / clang / lib / Testing / CMakeLists.txt
blob4a2400d6a107a217529dbea5a75a61d1c6ee52d0
1 # Don't include this target in LLVMExports. FIXME: is there a cleaner way?
2 set(EXCLUDE_FROM_ALL ON)
4 # Not add_clang_library: this is not part of clang's public library interface.
5 # Unit tests should depend on this with target_link_libraries(), rather
6 # than with clang_target_link_libraries().
7 add_llvm_library(clangTesting
8   CommandLineArgs.cpp
9   TestAST.cpp
11   BUILDTREE_ONLY
13   LINK_COMPONENTS
14   MC
15   Support
16   )
18 clang_target_link_libraries(clangTesting
19   PRIVATE
20   clangAST
21   clangBasic
22   clangFrontend
23   clangLex
24   clangSerialization
25   )
27 target_link_libraries(clangTesting
28   PRIVATE
29   llvm_gtest
30   )