From d42aefdc83b5e9a8c02b15af254eaa72edafff31 Mon Sep 17 00:00:00 2001 From: Thomas Lively Date: Thu, 23 May 2019 18:55:00 +0000 Subject: [PATCH] Fix unresolved symbols when linking tools/clang/unittests/Tooling/ToolingTests Summary: Add correct cmake dependencies so that `ToolingTests` link successfully. Patch by Guanzhong Chen Reviewers: tlively, aheejin Reviewed By: tlively Subscribers: mgorny, cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D62333 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@361536 91177308-0d34-0410-b5e6-96231b3b80d8 --- unittests/Tooling/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/unittests/Tooling/CMakeLists.txt b/unittests/Tooling/CMakeLists.txt index af8a35d925..111e07e8c9 100644 --- a/unittests/Tooling/CMakeLists.txt +++ b/unittests/Tooling/CMakeLists.txt @@ -71,6 +71,7 @@ target_link_libraries(ToolingTests clangToolingCore clangToolingInclusions clangToolingRefactor + LLVMTestingSupport ) -- 2.50.1