mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-12 09:57:00 +02:00
This adds component declarations so that users can select to not build certain parts of the OS.
14 lines
193 B
CMake
14 lines
193 B
CMake
serenity_component(
|
|
SystemServer
|
|
REQUIRED
|
|
TARGETS SystemServer
|
|
)
|
|
|
|
set(SOURCES
|
|
main.cpp
|
|
Service.cpp
|
|
)
|
|
|
|
serenity_bin(SystemServer)
|
|
target_link_libraries(SystemServer LibCore)
|