I think the problem you are encountering here is either the user rights of the executable, or the wrong build path.
First, try setting the correct build path under "Projects" - "General" - "Build Directory".
If this does not work, open a terminal, go to the build path and execute ./QtBuildProgram
If this does not work, take a look at the user rights ls -a./QtBuildProgram
Perhaps the rights to the executable file are not granted, because you run Creator in a different user mode as a terminal emulator.
Just to be sure, run sudo chmod u+x QtBuildProgram and then run the program from the command line by typing ./QtBuildProgram
This should also allow you to run the program again from QtCreator.
mmoment
source share