mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 13:47:45 +00:00
HackStudio: Add a Shell language server
This commit is contained in:
parent
7f3e1fa826
commit
6b55b007dd
11 changed files with 459 additions and 4 deletions
15
DevTools/HackStudio/LanguageServers/Shell/CMakeLists.txt
Normal file
15
DevTools/HackStudio/LanguageServers/Shell/CMakeLists.txt
Normal 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)
|
Loading…
Add table
Add a link
Reference in a new issue