“Could not determine which "make" command to run. Check the "make" step in the build configuration.” 在Linux下 Qt图形库出错解决

下面分成三步走:

第一步:先考虑环境的问题,确保自己的Linux系统安装了GCC编译环境,可以打开终端窗口进行安装

sudo apt install cmake g++  

第二步:选择Tools->options,开Kits列表框中,确保选中的是GCC

第三步:在Qt Versions中,确保选择的是环境中qmake这一项


NOTE:
如果报错 cannot find -IGL
还要再安装 -IGL
sudo apt-get install libgl1-mesa-dev

原文地址:https://www.cnblogs.com/habit2021/p/14856269.html