我正在尝试使用CMake构建一个名为MITK的C++工具包。但是我收到这个与Qt5相关的错误。我使用的是Qt 5.7.1的开源版本。我在 Qt5 文件夹中找不到任何名称为Qt5PrintSupportConfig.cmake
的文件。我发现的最接近的东西是windowsprintersupport.dll
在文件夹printsupport
内。探针可能是什么?
CMake Error at C:/Qt5.7.1/5.7/winrt_x64_msvc2015/lib/cmake/Qt5/Qt5Config.cmake:26 (find_package):
Could not find a package configuration file provided by "Qt5PrintSupport" with any of the following names:
Qt5PrintSupportConfig.cmake
qt5printsupport-config.cmake
Add the installation prefix of "Qt5PrintSupport" to CMAKE_PREFIX_PATH or
set "Qt5PrintSupport_DIR" to a directory containing one of the above files.
If "Qt5PrintSupport" provides a separate development package or SDK, be sure it has been installed.
Call Stack (most recent call first): CMakeLists.txt:211 (find_package)
您下载了错误的Qt在线安装程序。
您安装的那个来自这里:https://www.qt.io/download/
您想要的那个在这里:https://www.qt.io/download-open-source/最新版本或此处 https://download.qt.io/archive/online_installers/2.0/旧版本。
我不确定有什么区别,但您可能安装的是normal
版本,而您需要的是unified
版本,无论这意味着什么。安装后,请检查此目录:C:Qt5.7msvc2015_64libcmakeQt5PrintSupport
从现在开始,它应该包含Qt5PrintSupportConfig.cmake
文件。