This question already has an answer here but I am using CLion version 1.2.1 and the answer in that post doesn\'t help. It is possible to run a CLion program in gnome termina
Yes, you can execute a Clion c/c++ program in a gnome terminal from the IDE. Here is how:
-e ./myProjectName
(For newer versions of gnome-terminal -e
is deprecated, use -- ./myProjectName
)go to "Working Directory:" and type in the location to your cmake-build-debug folder found in your project folder
You can now press okay and go to the top right to select the name of your application that you created in step 2
This will run your program in the gnome terminal.
Hope this helped :)