Installed Lubuntu 20.04.02, installed Qt Creator 4.14.0 based on Qt 5.15.2. All settings are fine, compilers/assemblers/debuggers are configured. I am creating a project with terminal support. In system settings, x-terminal-emulator is installed with the -e parameter. Lubuntu itself has the qterminal terminal, the only one. I’m trying to put together a trivial project with the ability to enter data - the build is successful:
#include <iostream>
using namespace std;
int main()
{
int a = 0;
cout << "Enter value: " << endl;
cin >> a;
cout << "a = " << a << endl;
return 0;
}
I am trying to run a project - I get an error in the application output:
Cannot change to working directory «/home/user/Programming/build-test-Desktop_Qt_5_15_2_GCC_64bit-Debug»: file or directory not found
As I understand it, the problem is not new and I want to solve it without resorting to installing additional terminal emulators … I ask for help from the knowledgeable.
P.S. In other IDE’s, everything is compiled and run in an embedded terminal.