From: Vedant Kumar Date: Fri, 22 Sep 2017 22:17:10 +0000 (+0000) Subject: [test] Enable clang-func-mapping as a test dep with the analyzer X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=945869ef7ba9f6a64f4ed7ec218c75b0a8ed7edb;p=clang [test] Enable clang-func-mapping as a test dep with the analyzer clang-func-mapping should not be a test dependency when the static analyzer isn't being built. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@314036 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 5fd6b11f9f..c1ac9e4f0f 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -54,12 +54,12 @@ list(APPEND CLANG_TEST_DEPS clang-rename clang-refactor clang-diff - clang-func-mapping ) if(CLANG_ENABLE_STATIC_ANALYZER) list(APPEND CLANG_TEST_DEPS clang-check + clang-func-mapping ) endif()