mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-31 21:59:21 +00: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)
|