Skip to content

Commit af5b160

Browse files
committedNov 22, 2018
Move the llvm lit test dependencies to clang-tools-extra.
Summary: Part of revert r343473 Reviewers: mgorny Subscribers: cfe-commits Differential Revision: https://reviews.llvm.org/D54798 llvm-svn: 347449
1 parent 36f48c5 commit af5b160

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed
 

‎clang-tools-extra/test/CMakeLists.txt

+11
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,17 @@ set(CLANGD_TEST_DEPS
7171
clangd-indexer
7272
dexp
7373
)
74+
75+
# Add lit test dependencies.
76+
set(LLVM_UTILS_DEPS
77+
FileCheck count not
78+
)
79+
foreach(dep ${LLVM_UTILS_DEPS})
80+
if(TARGET ${dep})
81+
list(APPEND CLANGD_TEST_DEPS ${dep})
82+
endif()
83+
endforeach()
84+
7485
foreach(clangd_dep ${CLANGD_TEST_DEPS})
7586
list(APPEND CLANG_TOOLS_TEST_DEPS
7687
${clangd_dep})

0 commit comments

Comments
 (0)
Please sign in to comment.