================ @@ -77,3 +104,25 @@ add_subdirectory(Index) add_subdirectory(InstallAPI) add_subdirectory(Serialization) add_subdirectory(Support) + + +# If we're doing a single merged clang unit test binary, add that target after +# all the previous subdirectories have been processed. +get_property(SRCS GLOBAL PROPERTY CLANG_UNITTEST_SRCS) +get_property(CLANG_LIBS GLOBAL PROPERTY CLANG_UNITTEST_CLANG_LIBS) +get_property(LINK_LIBS GLOBAL PROPERTY CLANG_UNITTEST_LINK_LIBS) +get_property(LLVM_COMPONENTS GLOBAL PROPERTY CLANG_UNITTEST_LLVM_COMPONENTS) +add_distinct_clang_unittest(AllClangUnitTests + ${SRCS} + CLANG_LIBS + ${CLANG_LIBS} + LINK_LIBS + ${LINK_LIBS} + LLVM_COMPONENTS + ${LLVM_COMPONENTS} +) + +# The Tooling library has some internal headers. Make those work. If we like +# the merged clang unit test binary, we can udpate the include paths and make ---------------- petrhosek wrote:
```suggestion # the merged clang unit test binary, we can update the include paths and make ``` https://github.com/llvm/llvm-project/pull/134196 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits