build paraview code source using CMake error

97 Views Asked by At

I'm trying to build the Paraview from source code using CMake. I did installed QT version 6.6.0 but while building the Paraview I got this error:

CMake Warning at VTK/CMake/vtkModule.cmake:4810 (find_package):
  Found package configuration file:

    C:/Qt/6.6.0/mingw_64/lib/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 required Qt component "Core5Compat".

  Expected Config file at
  "C:/Qt/6.6.0/mingw_64/lib/cmake/Qt6Core5Compat/Qt6Core5CompatConfig.cmake"
  does NOT exist



  Configuring with --debug-find-pkg=Qt6Core5Compat might reveal details why
  the package was not found.

  Configuring with -DQT_DEBUG_FIND_PACKAGE=ON will print the values of some
  of the path variables that find_package uses to try and find the package.

Call Stack (most recent call first):
  Qt/Widgets/CMakeLists.txt:94 (vtk_module_find_package)


CMake Error at VTK/CMake/vtkModule.cmake:4816 (message):
  Could not find the Qt6 external dependency.
Call Stack (most recent call first):
  Qt/Widgets/CMakeLists.txt:94 (vtk_module_find_package).

How to handle that error?

I want to build the paraview code source in order to host it in a dockable window with c#.

1

There are 1 best solutions below

2
On

ParaView sadly does not officially support Qt6 for now ... (https://gitlab.kitware.com/paraview/paraview/-/blob/master/Documentation/dev/build.md#building)

That is why you need the Qt Core5 compat module (https://doc.qt.io/qt-6/qtcore5-index.html).