Not an issue per-say, but I wanted to build this on Fedora and had to grok the build instructions.
As of Fedora 40:
sudo dnf install -y git make cmake automake gcc gcc-c++ \
qt6-qtbase-devel qt6-qt5compat-devel qt6-qttools qt6-linguist \
qt6-qttools-devel qt6-qtmultimedia-devel qt6-qtwebengine-devel
git clone 'https://github.com/mvf/qolibri'
cd qolibri
cmake -DCMAKE_BUILD_TYPE=Release .
make -j`nproc`
Not 100% sure you need all of the non -devel packages, but I was able to test the build on a fresh Fedora 40 system (via a container).
Not an issue per-say, but I wanted to build this on Fedora and had to grok the build instructions.
As of Fedora 40:
sudo dnf install -y git make cmake automake gcc gcc-c++ \ qt6-qtbase-devel qt6-qt5compat-devel qt6-qttools qt6-linguist \ qt6-qttools-devel qt6-qtmultimedia-devel qt6-qtwebengine-devel git clone 'https://github.com/mvf/qolibri' cd qolibri cmake -DCMAKE_BUILD_TYPE=Release . make -j`nproc`Not 100% sure you need all of the non
-develpackages, but I was able to test the build on a fresh Fedora 40 system (via a container).