Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using visual studio c++ compiler in netbeans

I want to develop a few assignments in C++ on Windows, but Visual Studio does not provide a few user functions that make development a real pain to go without. Can someone help me with setting up the Netbeans C++ environment to use the same compiler that Visual Studio is using?

like image 273
changed Avatar asked Oct 01 '09 21:10

changed


2 Answers

NetBeans supports so called Tool Collection Descriptors, which are XML files telling NetBeans how to work with specific compiler collection. By default descriptors for Cygwin and MinGW are shipped. But it should be possible to create your own descriptor for Visual Studio and install it into NetBeans.

See this tutorial: http://www.netbeans.org/kb/docs/cnd/toolchain.html

like image 70
Alexey Avatar answered Oct 13 '22 11:10

Alexey


I am currently writing a plugin/toolchain to use Visual C++ on Netbeans.
You can find the project called VCC4N on source forge or on NetBeans plugins.

like image 24
Maxime Viargues Avatar answered Oct 13 '22 11:10

Maxime Viargues