ladybird/Userland/Applications/SpaceAnalyzer/CMakeLists.txt
Gunnar Beutner 631d36fd98 Everywhere: Add component declarations
This adds component declarations so that users can select to not build
certain parts of the OS.
2021-06-17 11:03:51 +02:00

16 lines
324 B
CMake

serenity_component(
SpaceAnalyzer
TARGETS SpaceAnalyzer
)
compile_gml(SpaceAnalyzer.gml SpaceAnalyzerGML.h space_analyzer_gml)
set(SOURCES
main.cpp
TreeMapWidget.cpp
SpaceAnalyzerGML.h
)
serenity_app(SpaceAnalyzer ICON app-space-analyzer)
target_link_libraries(SpaceAnalyzer LibDesktop LibGfx LibGUI)