From 5749a261c584cd16f90e473697fdf640c371eaaa Mon Sep 17 00:00:00 2001 From: Sam McCall Date: Thu, 7 Apr 2022 00:13:59 +0200 Subject: [PATCH] [pseudo] Include missing `count` in test deps. We don't use this for testing, but one of the lit python modules requires it :-\ After this, check-clang-pseudo passes with a clean build tree. --- clang-tools-extra/pseudo/test/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang-tools-extra/pseudo/test/CMakeLists.txt b/clang-tools-extra/pseudo/test/CMakeLists.txt index e541359ee5cf..250186cb78c1 100644 --- a/clang-tools-extra/pseudo/test/CMakeLists.txt +++ b/clang-tools-extra/pseudo/test/CMakeLists.txt @@ -3,7 +3,7 @@ set(CLANG_PSEUDO_TEST_DEPS ClangPseudoTests ) -foreach(dep FileCheck not) +foreach(dep FileCheck not count) if(TARGET ${dep}) list(APPEND CLANG_PSEUDO_TEST_DEPS ${dep}) endif()