r361536 - Fix unresolved symbols when linking tools/clang/unittests/Tooling/ToolingTests

Thomas Lively via cfe-commits cfe-commits at lists.llvm.org
Thu May 23 11:55:01 PDT 2019


Author: tlively
Date: Thu May 23 11:55:00 2019
New Revision: 361536

URL: http://llvm.org/viewvc/llvm-project?rev=361536&view=rev
Log:
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

Modified:
    cfe/trunk/unittests/Tooling/CMakeLists.txt

Modified: cfe/trunk/unittests/Tooling/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/unittests/Tooling/CMakeLists.txt?rev=361536&r1=361535&r2=361536&view=diff
==============================================================================
--- cfe/trunk/unittests/Tooling/CMakeLists.txt (original)
+++ cfe/trunk/unittests/Tooling/CMakeLists.txt Thu May 23 11:55:00 2019
@@ -71,6 +71,7 @@ target_link_libraries(ToolingTests
   clangToolingCore
   clangToolingInclusions
   clangToolingRefactor
+  LLVMTestingSupport
   )
 
 




More information about the cfe-commits mailing list