From db5294d9c014d57f8daf0f89ac21a1f9af39e912 Mon Sep 17 00:00:00 2001 From: Chris Bieneman Date: Wed, 2 Mar 2016 00:27:15 +0000 Subject: [PATCH] [CMake] Add convenience target clang-test-depends to build test dependencies. This is useful when paired with the distribution targets to build prerequisites for running tests. llvm-svn: 262429 --- clang/test/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/clang/test/CMakeLists.txt b/clang/test/CMakeLists.txt index 8dd64d1..f1a5838 100644 --- a/clang/test/CMakeLists.txt +++ b/clang/test/CMakeLists.txt @@ -71,6 +71,8 @@ if( NOT CLANG_BUILT_STANDALONE ) ) endif() +add_custom_target(clang-test-depends DEPENDS ${CLANG_TEST_DEPS}) + add_lit_testsuite(check-clang "Running the Clang regression tests" ${CMAKE_CURRENT_BINARY_DIR} #LIT ${LLVM_LIT} -- 2.7.4