我是qt的新手。试图在QtCreator 3.2.1中运行一些基于Debian系统QT5的简单应用程序。
我使用cmake创建c ++ plain项目
#include <iostream>
using namespace std;
int main()
{
string name;
cout << "please enter your name:\n";
cin >> name;
cout << "hello" << name << "\n";
return 0;
}
问题是当我启动应用程序时,输入一些字符串。应用程序控制台没有任何响应。
我确认应用程序可以在我的gnome-terminal中运行。
之后,我从stackoverflow检查相同的消息。 有一个解决方案“在终端设置项目运行”。
然后我在QtCreator 3.2.1上寻找。我找不到那个菜单。只有终端设置。
不幸的是,无论我选择哪一个, 1. / usr / bin / xterm -e 2. / usr / bin / gnome-terminal -x 3. / usr / bin / x-terminal-emulator -e 问题依然存在。