Microsoft (R) Program Maintenance Utility Version 14.29.30133.0
Copyright (C) Microsoft Corporation. All rights reserved.
configure -debug-and-release -confirm-license -opensource -opengl desktop -prefix C:\softwareInstall\Qt\5.15.2 -nomake tests -nomake examples -no-compile-examples -no-openssl
cd tools\moc\ && ( if not exist Makefile c:\softwareInstall\Qt\5.15.2\qtbase\bin\qmake.exe -o Makefile C:\softwareInstall\Qt\5.15.2\qtbase\src\tools\moc\moc.pro ) && "C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\VC\Tools\MSVC\14.29.30133\bin\HostX64\x64\nmake.exe" -f Makefile
Project ERROR: Unknown module(s) in QT: bootstrap-private
NMAKE : fatal error U1077: 'cd' : return code '0x3'
Stop.
NMAKE : fatal error U1077: 'cd' : return code '0x2'
Stop.
NMAKE : fatal error U1077: 'cd' : return code '0x2'
Stop.
Unknown module(s) in QT: bootstrap-private说明你使用了QT不识别的模块,可能有几种原因:
1.模块的名字你拼写错了
2.在pro文件中没有添加模块 (QT+= 模块名)
3.安装qt的时候没有安装你使用的模块
我安装qt也遇到这个问题了,你解决了没