[clang-tools-extra] r342037 - [clangd] Add missing clangBasic target_link_libraries
Heejin Ahn via cfe-commits
cfe-commits at lists.llvm.org
Wed Sep 12 02:40:13 PDT 2018
Author: aheejin
Date: Wed Sep 12 02:40:13 2018
New Revision: 342037
URL: http://llvm.org/viewvc/llvm-project?rev=342037&view=rev
Log:
[clangd] Add missing clangBasic target_link_libraries
Without this, builds with `-DSHARED_LIB=ON` fail.
Modified:
clang-tools-extra/trunk/clangd/index/dex/dexp/CMakeLists.txt
Modified: clang-tools-extra/trunk/clangd/index/dex/dexp/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clangd/index/dex/dexp/CMakeLists.txt?rev=342037&r1=342036&r2=342037&view=diff
==============================================================================
--- clang-tools-extra/trunk/clangd/index/dex/dexp/CMakeLists.txt (original)
+++ clang-tools-extra/trunk/clangd/index/dex/dexp/CMakeLists.txt Wed Sep 12 02:40:13 2018
@@ -11,5 +11,6 @@ add_clang_executable(dexp
target_link_libraries(dexp
PRIVATE
+ clangBasic
clangDaemon
)
More information about the cfe-commits
mailing list