feat: add opengl widget

This commit is contained in:
parker
2025-06-24 20:10:20 +01:00
parent b316fb9b07
commit 1b51d5ba20
5 changed files with 54 additions and 2 deletions

View File

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