Skip to content

Commit bd0bf96

Browse files
committed
[mlir][Bazel] Adapt BUILD.bazel for move of lsp-server support files.
Differential Revision: https://reviews.llvm.org/D121891
1 parent 4010a7a commit bd0bf96

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

utils/bazel/llvm-project-overlay/mlir/BUILD.bazel

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2998,6 +2998,23 @@ cc_library(
29982998
deps = ["//llvm:Support"],
29992999
)
30003000

3001+
cc_library(
3002+
name = "MlirLspServerSupportLib",
3003+
srcs = glob(
3004+
[
3005+
"lib/Tools/lsp-server-support/*.cpp",
3006+
],
3007+
),
3008+
hdrs = glob(
3009+
[
3010+
"lib/Tools/lsp-server-support/*.h",
3011+
],
3012+
),
3013+
deps = [
3014+
":Support",
3015+
],
3016+
)
3017+
30013018
cc_library(
30023019
name = "MlirLspServerLib",
30033020
srcs = glob(
@@ -3014,6 +3031,7 @@ cc_library(
30143031
includes = ["include"],
30153032
deps = [
30163033
":IR",
3034+
":MlirLspServerSupportLib",
30173035
":Parser",
30183036
":Support",
30193037
"//llvm:Support",

0 commit comments

Comments
 (0)