mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-31 21:29:06 +00:00
HackStudio: Add a Shell language server
This commit is contained in:
parent
7f3e1fa826
commit
6b55b007dd
Notes:
sideshowbarker
2024-07-19 02:02:56 +09:00
Author: https://github.com/alimpfard
Commit: 6b55b007dd
Pull-request: https://github.com/SerenityOS/serenity/pull/3675
Reviewed-by: https://github.com/awesomekling
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