blob: 144a4526a3ed2764c4a07fe569996ef16ffa1e3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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)
|