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?
-
Why do you need to use the VS c++ compiler?Lonzo– Lonzo2009-10-01 21:43:06 +00:00Commented Oct 1, 2009 at 21:43
-
3@Lonzo There are many reasons why one would need or want to use the VS compiler; see stackoverflow.com/a/3753181/14302Nik Reiman– Nik Reiman2012-09-23 08:52:30 +00:00Commented Sep 23, 2012 at 8:52
Add a comment
|
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
Comments
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.