How to set intellij for a C++ project

Hi everybody!
Well, when I start a C/C++ [1] project in IntellijIDEA, it doesn't work correctly, when I push "ctrl+F9" it doesn't "make", doesn't generate my executable file:

dennis@r00t:cuarta$ tree
.
├── cuarta.iml
├── cuarta.ipr
├── cuarta.iws
├── Makefile
├── out
│   ├── production
│   │   └── cuarta
│   └── test
│       └── cuarta
└── src
    ├── cuarta.cpp

5 directories, 5 files

therefore I can't run a simple c++ source file:

#include <iostream>
using namespace std;
int main(){
    cout << "hola mundooo";
    return 0;
}


[1] I use the plugin http://plugins.intellij.net/plugin/?id=1373

0

Hello.

This plugin is not developed by JetBrains. You can contact plugin authors.

Regards,
Alexander.

0

请先登录再写评论。