How To Setup NetBeans in C/C++

If you have Visual Studio from Microsoft well great but if you're not fortunate to have the commercial tool you have NetBeans which can run in both MS Windows and Linux. So, to setup NetBeans you need the following,

- Download and install NetBeans with C/C++ support
- Download and install MingW
- Download and install MSys inside the base directory of MingW
- Point the environment variables "path" to where the /bin of MingW and MSys
- Run NetBeans and go to \Tools\Options\C++ and add in the tool chain the base directory of MingW
- For the C compiler point the path to C:\Program Files (x86)\mingw-w64\i686-5.1.0-posix-dwarf-rt_v4-rev0\mingw32\bin\i686-w64-mingw32-gcc.exe
- For the C++ compiler point the path to C:\Program Files (x86)\mingw-w64\i686-5.1.0-posix-dwarf-rt_v4-rev0\mingw32\bin\i686-w64-mingw32-c++.exe
- For the debugger point the path to C:\Program Files (x86)\mingw-w64\i686-5.1.0-posix-dwarf-rt_v4-rev0\mingw32\bin\gdb.exe
- For the make point the path to C:\Program Files (x86)\mingw-w64\i686-5.1.0-posix-dwarf-rt_v4-rev0\MSYS-20111123\msys\bin\make.exe
- Click apply then close your NetBeans and open it again
- Create new C/C++ project and build


That's it!



 

Comments

Popular posts from this blog

Creating tray application and popup context menu in Windows

How to put an image to wxPanel using wxWidgets

How to statically link applications to wxWidgets via Visual Studio 2008 and in Linux