环境: 
QT5.10 
VisualStudio2015 
错误1: 
Could not determine which “make” command to run. Check the “make” step in the build configuration. 
Error while building/deploying project XXXXXXXXX(kit: Desktop Qt 5.10.0 MSVC2013 64bit) 
When executing step “qmake” 
Could not determine which “make” command to run. Check the “make” step in the build configuration 
点击工具->选项->构建与运行,都已经配置好,安装的是VS2015,QT默认配置了2015的相关信息,所以VS2013和VS2017的都是感叹号,我将Kit默认选择的从MSVC2013 64bit改成MSVC2015 64bit,但是一点击运行,就报这个错MSVC2013 64bit。 
Could not determine which “make” command to run. Check the “make” step in the build configuration 
最后将Debug的选项修改后,就OK了。 
Could not determine which “make” command to run. Check the “make” step in the build configuration

1,构建套件(Kit): 构建套件相当于把指定的编译器(链接器) 、调试器、Qt 开发库等全部集合起来,配置成一 套 Qt 开发环境。 
2,出现这个错误的原因:是因为在构建项目前,我没有修改默认的构建套件,导致后续更改了默认的构建套件还不行,还需要在Debug中进行修改。

相关文章: