Reputation: 79645
I'm working on a large codebase in an Eclipse project. Our codebase has both Python and C++ code. Since I only worked in Python until now, I created the project as a Python project.
Now I'm about to work heavily with some of our C++ modules, and I would like the benefits of CTD. My Eclipse has CTD (the Eclipse C++ plugin) installed. How do I convert my existing PyDev project to work with C++?
Upvotes: 0
Views: 572
Reputation: 6139
Basically you could add C++ nature to the project. Eclipse project could have several natures simultaneously, so you will have both python and C++ goodies.
Upvotes: 1