HackStudio: Add a Shell language server

This commit is contained in:
AnotherTest 2020-10-03 17:25:51 +03:30 committed by Andreas Kling
commit 6b55b007dd
Notes: sideshowbarker 2024-07-19 02:02:56 +09:00
11 changed files with 459 additions and 4 deletions

View file

@ -0,0 +1,15 @@
set(SOURCES
ClientConnection.cpp
main.cpp
AutoComplete.cpp
)
set(GENERATED_SOURCES
../LanguageServerEndpoint.h
../LanguageClientEndpoint.h)
serenity_bin(ShellLanguageServer)
# We link with LibGUI because we use GUI::TextDocument to update
# the content of files according to the edit actions we receive over IPC.
target_link_libraries(ShellLanguageServer LibIPC LibShell LibGUI)