[PATCH] D121891: [mlir][Bazel] Adapt BUILD.bazel for move of lsp-server support files.
Adrian Kuegel via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 17 01:58:57 PDT 2022
akuegel updated this revision to Diff 416099.
akuegel added a comment.
Fix library name.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D121891/new/
https://reviews.llvm.org/D121891
Files:
utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
Index: utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
===================================================================
--- utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
+++ utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
@@ -2998,6 +2998,23 @@
deps = ["//llvm:Support"],
)
+cc_library(
+ name = "MlirLspServerSupportLib",
+ srcs = glob(
+ [
+ "lib/Tools/lsp-server-support/*.cpp",
+ ],
+ ),
+ hdrs = glob(
+ [
+ "lib/Tools/lsp-server-support/*.h",
+ ],
+ ),
+ deps = [
+ ":Support",
+ ],
+)
+
cc_library(
name = "MlirLspServerLib",
srcs = glob(
@@ -3014,6 +3031,7 @@
includes = ["include"],
deps = [
":IR",
+ ":MlirLspServerSupportLib",
":Parser",
":Support",
"//llvm:Support",
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D121891.416099.patch
Type: text/x-patch
Size: 840 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220317/4ea18f93/attachment.bin>
More information about the llvm-commits
mailing list