Author: aheejin Date: Wed Aug 28 16:17:38 2019 New Revision: 370273 URL: http://llvm.org/viewvc/llvm-project?rev=370273&view=rev Log: [clangd] Fix ExtractFunction dependencies
Summary: Without these dependencies, builds with `-DBUILD_SHARED_LIBS=ON` fail. Reviewers: SureYeaah Subscribers: mgorny, ilya-biryukov, MaskRay, jkorous, arphaman, kadircet, cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D66910 Modified: clang-tools-extra/trunk/clangd/refactor/tweaks/CMakeLists.txt clang-tools-extra/trunk/clangd/tool/CMakeLists.txt clang-tools-extra/trunk/clangd/unittests/CMakeLists.txt Modified: clang-tools-extra/trunk/clangd/refactor/tweaks/CMakeLists.txt URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clangd/refactor/tweaks/CMakeLists.txt?rev=370273&r1=370272&r2=370273&view=diff ============================================================================== --- clang-tools-extra/trunk/clangd/refactor/tweaks/CMakeLists.txt (original) +++ clang-tools-extra/trunk/clangd/refactor/tweaks/CMakeLists.txt Wed Aug 28 16:17:38 2019 @@ -26,5 +26,6 @@ add_clang_library(clangDaemonTweaks OBJE clangBasic clangDaemon clangToolingCore + clangToolingRefactoring clangToolingSyntax ) Modified: clang-tools-extra/trunk/clangd/tool/CMakeLists.txt URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clangd/tool/CMakeLists.txt?rev=370273&r1=370272&r2=370273&view=diff ============================================================================== --- clang-tools-extra/trunk/clangd/tool/CMakeLists.txt (original) +++ clang-tools-extra/trunk/clangd/tool/CMakeLists.txt Wed Aug 28 16:17:38 2019 @@ -26,6 +26,7 @@ target_link_libraries(clangd clangSema clangTooling clangToolingCore + clangToolingRefactoring clangToolingSyntax ${CLANGD_XPC_LIBS} ) Modified: clang-tools-extra/trunk/clangd/unittests/CMakeLists.txt URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clangd/unittests/CMakeLists.txt?rev=370273&r1=370272&r2=370273&view=diff ============================================================================== --- clang-tools-extra/trunk/clangd/unittests/CMakeLists.txt (original) +++ clang-tools-extra/trunk/clangd/unittests/CMakeLists.txt Wed Aug 28 16:17:38 2019 @@ -90,6 +90,7 @@ target_link_libraries(ClangdTests clangTooling clangToolingCore clangToolingInclusions + clangToolingRefactoring clangToolingSyntax LLVMSupport LLVMTestingSupport _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits