Wie man CMake 'Failed to find Qt component "Core5Compat"' auf Ubuntu behebt

Problem:

Wenn Sie versuchen, Ihr CMake-Projekt zu kompilieren, sehen Sie eine Fehlermeldung wie

qt_core5compat_error.txt
CMake Error at cMake/FreeCAD_Helpers/SetupQt.cmake:33 (find_package):
  Found package configuration file:

    /usr/lib/x86_64-linux-gnu/cmake/Qt6/Qt6Config.cmake

  but it set Qt6_FOUND to FALSE so package "Qt6" is considered to be NOT
  FOUND.  Reason given by package:

  Failed to find Qt component "Core5Compat".

  Expected Config file at
  "/usr/lib/x86_64-linux-gnu/cmake/Qt6Core5Compat/Qt6Core5CompatConfig.cmake"
  does NOT exist



Call Stack (most recent call first):
  CMakeLists.txt:82 (include)

Lösung

install_libqt6core5compat6_dev.sh
sudo apt -y install libqt6core5compat6-dev

Getestet auf Ubuntu 22.04


Check out similar posts by category: CMake, Linux