mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 08:54:58 +00:00

This moves all code comprehension-related code to a new library, LibCodeComprehension. This also moves some types related to code comprehension tasks (such as autocomplete, find declaration) out of LibGUI and into LibCodeComprehension.
15 lines
432 B
CMake
15 lines
432 B
CMake
compile_ipc(LanguageServer.ipc LanguageServerEndpoint.h)
|
|
compile_ipc(LanguageClient.ipc LanguageClientEndpoint.h)
|
|
|
|
set(SOURCES
|
|
ConnectionFromClient.cpp
|
|
FileDB.cpp)
|
|
set(GENERATED_SOURCES
|
|
LanguageClientEndpoint.h
|
|
LanguageServerEndpoint.h)
|
|
|
|
serenity_lib(LibLanguageServer language_server)
|
|
target_link_libraries(LibLanguageServer LibCodeComprehension LibC)
|
|
|
|
add_subdirectory(Cpp)
|
|
add_subdirectory(Shell)
|