mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 10:28:10 +00:00

This adds component declarations so that users can select to not build certain parts of the OS.
13 lines
193 B
CMake
13 lines
193 B
CMake
serenity_component(
|
|
SystemServer
|
|
REQUIRED
|
|
TARGETS SystemServer
|
|
)
|
|
|
|
set(SOURCES
|
|
main.cpp
|
|
Service.cpp
|
|
)
|
|
|
|
serenity_bin(SystemServer)
|
|
target_link_libraries(SystemServer LibCore)
|