Does anybody know how to add a C/C++ project nature to an Eclipse project through the UI ? I'm importing a project and working with legacy code that was originally started in Visual Studio 4 and I'd really like to be able to make as much use of Eclipse's helpers as possible.
Asked
Active
Viewed 1.4k times
45
-
you can check this link http://mhandroid.wordpress.com/2011/01/23/using-eclipse-for-android-cc-development/ – Mohammed Subhi Sheikh Quroush Mar 05 '13 at 10:22
2 Answers
63
Assuming you've got the CDT plugin installed
Right-click on the project.
Select: New -> Other
Under C/C++, select "Convert to a C/C++ project"

Glen
- 21,816
- 3
- 61
- 76
-
That's exactly what I was looking for Glen, thank you kindly for your answer. – Alex Marshall Aug 25 '09 at 15:05
-
6In the current version, they've improved the menu item so it now reads "Convert to a C/C++ project (Adds C/C++ Nature)" – James Moore May 02 '12 at 17:20
-
2Just a note: this feature works exactly as advertised: it *Adds* C/C++ Nature to a project. Which turned out to work great for my Java project which also includes JNI C++ code, allowing it to also keep it's existing Java nature. – Ogre Psalm33 Oct 01 '13 at 14:31