[Mlir-commits] [llvm] [mlir] [LLVM][MLIR] Move LSP server support library from MLIR into LLVM (PR #155572)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Wed Aug 27 01:58:08 PDT 2025
Albert =?utf-8?q?Havliček?= <ahavlicek at azul.com>,
Albert =?utf-8?q?Havliček?= <ahavlicek at azul.com>,
Albert =?utf-8?q?Havliček?= <ahavlicek at azul.com>,
Albert =?utf-8?q?Havliček?= <ahavlicek at azul.com>,
Albert =?utf-8?q?Havliček?= <ahavlicek at azul.com>,
Albert =?utf-8?q?Havliček?= <ahavlicek at azul.com>
Message-ID:
In-Reply-To: <llvm.org/llvm/llvm-project/pull/155572 at github.com>
================
@@ -0,0 +1,17 @@
+add_llvm_library(LLVMSupportLSP STATIC
+ Protocol.cpp
+ Transport.cpp
+ Logging.cpp
+)
+
+target_include_directories(LLVMSupportLSP
+ PUBLIC
+ $<BUILD_INTERFACE:${LLVM_MAIN_INCLUDE_DIR}>
+ $<BUILD_INTERFACE:${LLVM_LIBRARY_DIR}/Support/LSP>
+ $<INSTALL_INTERFACE:include> # for installation
+)
+
+target_link_libraries(LLVMSupportLSP
+ PUBLIC
+ LLVMSupport
+)
----------------
Bertik23 wrote:
I have not a lot of experience when it comes to CMake. So it might be, that I did something stupid. I didn't intend to include all object from LLVMSupport in LLVMSuportLSP.
https://github.com/llvm/llvm-project/pull/155572
More information about the Mlir-commits
mailing list