1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 01:57:44 +00:00
serenity/Userland/Applications/SpaceAnalyzer/CMakeLists.txt
Arda Cinar 8ba37872e9 SpaceAnalyzer: Remove an unnecessary level of inheritance
The TreeMapNode and TreeMap structs inside TreeMapWidget.h both had
single implementers, TreeNode and Tree inside main.cpp. The indirection
was removed and the new structures were moved to their own file
2023-01-09 17:08:17 +00:00

19 lines
393 B
CMake

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