mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 01:57:44 +00:00

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
19 lines
393 B
CMake
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)
|