diff options
author | Stefan Granitz <stefan.graenitz@gmail.com> | 2019-01-14 09:24:50 +0000 |
---|---|---|
committer | Stefan Granitz <stefan.graenitz@gmail.com> | 2019-01-14 09:24:50 +0000 |
commit | 4b7e12f2cfc8ec1eb0ea537371b8d2f499426655 (patch) | |
tree | f38e24a218064d4965ea57b1a99c9a09dda5643c | |
parent | 49488407aafe459d1d713bf96474f32441378eb8 (diff) | |
download | bcm5719-llvm-4b7e12f2cfc8ec1eb0ea537371b8d2f499426655.tar.gz bcm5719-llvm-4b7e12f2cfc8ec1eb0ea537371b8d2f499426655.zip |
[CMake] LLVM exports utility targets since r350959, so we can use them without standalone-checks now
llvm-svn: 351037
-rw-r--r-- | lldb/lit/CMakeLists.txt | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/lldb/lit/CMakeLists.txt b/lldb/lit/CMakeLists.txt index 8c75aec731a..1ac013b2eed 100644 --- a/lldb/lit/CMakeLists.txt +++ b/lldb/lit/CMakeLists.txt @@ -26,6 +26,9 @@ list(APPEND LLDB_TEST_DEPS llvm-config llvm-mc llvm-objcopy + FileCheck + count + not ) if(TARGET lld) @@ -52,14 +55,6 @@ configure_lit_site_cfg( ${CMAKE_CURRENT_SOURCE_DIR}/Suite/lit.site.cfg.in ${CMAKE_CURRENT_BINARY_DIR}/Suite/lit.site.cfg) -if(NOT LLDB_BUILT_STANDALONE) - list(APPEND LLDB_TEST_DEPS - FileCheck - count - not - ) -endif() - add_lit_testsuite(check-lldb-lit "Running lldb lit test suite" ${CMAKE_CURRENT_BINARY_DIR} DEPENDS ${LLDB_TEST_DEPS} |