mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 08:37:46 +00:00
Everywhere: Add component declarations
This adds component declarations so that users can select to not build certain parts of the OS.
This commit is contained in:
parent
6e094b8dbe
commit
631d36fd98
89 changed files with 535 additions and 8 deletions
|
@ -1,3 +1,10 @@
|
|||
serenity_component(
|
||||
HackStudio
|
||||
RECOMMENDED
|
||||
TARGETS HackStudio
|
||||
DEPENDS CppLanguageServer ShellLanguageServer
|
||||
)
|
||||
|
||||
add_subdirectory(LanguageServers)
|
||||
add_subdirectory(LanguageClients)
|
||||
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
serenity_component(
|
||||
CppLanguageServer
|
||||
TARGETS CppLanguageServer
|
||||
)
|
||||
|
||||
set(SOURCES
|
||||
CppComprehensionEngine.cpp
|
||||
Tests.cpp
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
serenity_component(
|
||||
ShellLanguageServer
|
||||
TARGETS ShellLanguageServer
|
||||
)
|
||||
|
||||
set(SOURCES
|
||||
ShellComprehensionEngine.cpp
|
||||
main.cpp
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue