32 lines · plain
1# Don't include this target in LLVMExports. FIXME: is there a cleaner way?2set(EXCLUDE_FROM_ALL ON)3 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(), rather6# than with clang_target_link_libraries().7add_llvm_library(clangTesting8 CommandLineArgs.cpp9 TestAST.cpp10 11 BUILDTREE_ONLY12 13 LINK_COMPONENTS14 MC15 Support16 TargetParser17 )18 19clang_target_link_libraries(clangTesting20 PRIVATE21 clangAST22 clangBasic23 clangFrontend24 clangLex25 clangSerialization26 )27 28target_link_libraries(clangTesting29 PRIVATE30 llvm_gtest31 )32