We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4010a7a commit bd0bf96Copy full SHA for bd0bf96
utils/bazel/llvm-project-overlay/mlir/BUILD.bazel
@@ -2998,6 +2998,23 @@ cc_library(
2998
deps = ["//llvm:Support"],
2999
)
3000
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
+
3018
cc_library(
3019
name = "MlirLspServerLib",
3020
srcs = glob(
@@ -3014,6 +3031,7 @@ cc_library(
3031
includes = ["include"],
3032
deps = [
3033
":IR",
3034
+ ":MlirLspServerSupportLib",
3035
":Parser",
3036
":Support",
3037
"//llvm:Support",
0 commit comments