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

This adds component declarations so that users can select to not build certain parts of the OS.
11 lines
160 B
CMake
11 lines
160 B
CMake
serenity_component(
|
|
Fire
|
|
TARGETS Fire
|
|
)
|
|
|
|
set(SOURCES
|
|
Fire.cpp
|
|
)
|
|
|
|
serenity_app(Fire ICON app-fire)
|
|
target_link_libraries(Fire LibGUI LibCore LibGfx)
|