Get current version of Ruqola (RocketChat client for KDE) running

hi, i recently found Ruqola as a replacement for the (Electron-based) RocketChat app. i think it is nice, and i like the fast responding time compared to the original RocketChat client.

my problem is: it tries to authenticate with two-factor-authorization on every single reboot. in my Fedora40 distro, there is only an old version in the system repos - it has version 2.1, but there is 2.2 as source code on Network / Ruqola · GitLab . so the update might come one day, but as i am impatient about this, i tried to install it from source. i downloaded the repo to my system and run the cmake+make commands. at first i found that i have to install extra-cmake-modules on Fedora. then it showed the following error:

~/packages/ruqola-2.2.0$ mkdir build
cd build
cmake ..
make
make install
-- The C compiler identification is GNU 14.2.1
-- The CXX compiler identification is GNU 14.2.1
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Looking for __GLIBC__
-- Looking for __GLIBC__ - found
-- Performing Test _OFFT_IS_64BIT
-- Performing Test _OFFT_IS_64BIT - Success
-- Performing Test HAVE_DATE_TIME
-- Performing Test HAVE_DATE_TIME - Success
CMake Error at /usr/share/ECM/modules/ECMQueryQt.cmake:84 (message):
  No Qt6 qtpaths executable found.  Can't check QT_INSTALL_PREFIX as required
Call Stack (most recent call first):
  /usr/share/ECM/kde-modules/KDEInstallDirs6.cmake:197 (ecm_query_qt)
  /usr/share/ECM/kde-modules/KDEInstallDirs.cmake:15 (include)
  CMakeLists.txt:28 (include)


-- Configuring incomplete, errors occurred!

can you please help me on what else packages i have to install to get it working?
thanks, Thomas

i found a solution: DNF offers getting all the build dependencies with

sudo dnf builddep ruqola

now it works