mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-12 06:02:51 +00:00
This feels like a better name since the "autocomplete engine" can, in addition to providing autocomplete suggestions, also find declarations of symbols and report back the symbols that are defined in a document. Also, Cpp/ParserAutoComplete has been renamed to CppComprehensionEngine and Shell/AutoComplete has been renamed to ShellComprehensionEngine.
16 lines
443 B
CMake
16 lines
443 B
CMake
compile_ipc(LanguageServer.ipc LanguageServerEndpoint.h)
|
|
compile_ipc(LanguageClient.ipc LanguageClientEndpoint.h)
|
|
|
|
set(SOURCES
|
|
CodeComprehensionEngine.cpp
|
|
ClientConnection.cpp
|
|
FileDB.cpp)
|
|
set(GENERATED_SOURCES
|
|
LanguageClientEndpoint.h
|
|
LanguageServerEndpoint.h)
|
|
|
|
serenity_lib(LibLanguageServer language_server)
|
|
target_link_libraries(LibLanguageServer LibC)
|
|
|
|
add_subdirectory(Cpp)
|
|
add_subdirectory(Shell)
|