feat: add node icons

This commit is contained in:
parker
2025-06-24 16:17:13 +01:00
parent 7f6b7d0573
commit b83388ee69
6 changed files with 48 additions and 2 deletions

View File

@@ -12,7 +12,7 @@ project(enzo_project)
# qt
find_package(Qt6 REQUIRED COMPONENTS Core Widgets)
find_package(Qt6 REQUIRED COMPONENTS Core Widgets SvgWidgets)
qt_standard_project_setup()
@@ -28,9 +28,10 @@ qt_add_executable(${AppExec}
src/gui/network/NodeEdgeGraphic.cpp
src/gui/network/FloatingEdgeGraphic.cpp
src/gui/network/DisplayFlagButton.cpp
src/gui/network/NodeIconGraphic.cpp
)
target_link_libraries(${AppExec} PRIVATE Qt6::Core Qt6::Widgets)
target_link_libraries(${AppExec} PRIVATE Qt6::Core Qt6::Widgets Qt6::SvgWidgets)
target_include_directories(${AppExec} PUBLIC src)
# tests