mirror of
https://github.com/RGBCube/serenity
synced 2025-05-24 01:15:07 +00:00

This makes them available for use by other language servers. Also as a bonus, update the Shell language server to discover some symbols and add go-to-definition functionality :^)
14 lines
395 B
CMake
14 lines
395 B
CMake
set(SOURCES
|
|
AutoComplete.cpp
|
|
main.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 LibLanguageServer)
|