Idk if this is a good workaround, I managed to install this package manually by cloning the official repo and edit the CMakeLists.txt like this
Before
if(BUILD_OUT_OF_TREE)
find_qt(COMPONENTS Widgets Core)
else()
find_package(Qt6 REQUIRED COMPONENTS Core Widgets)
endif()
After
if(BUILD_OUT_OF_TREE)
find_package(Qt6 REQUIRED COMPONENTS Core Widgets)
endif()
Pinned Comments
NicolaiVdS commented on 2025-05-01 21:01 (UTC)
Sorry for the long wait but i have update the package and fixed the qt issues.
also did some quick testing and everything seems to work perfectly