Como Configurar o CLion em C++?
Answered
Estou tentando executar um programa em C++ e quando vou para executar, aparece que eu preciso editar as configurações!

Please sign in to leave a comment.
Hello!
CLion does not provide its own project model for your code but supports the following formats:
Gradle (only the new Gradle C/C++ projects)
It means that your project should be based on one of these formats so that you could run it in CLion.
The easiest way to start is the following:
File | Close Project, selectNew Projecton the Welcome screen >C++ Executable>Create. After that you can copy the necessary code and past it into this project.Please read our quick CMake tutorial - https://www.jetbrains.com/help/clion/quick-cmake-tutorial.html, it will help you.