Reputation: 1173
I'd like to use one of my Projects where everything is configured fine and how it is need to start working as a "template" for creating a new Project within eclipse with CDT.
So that time for configuring and writing a working project can be safed because it was already made somewhere else.
Any hints?
Upvotes: 5
Views: 4024
Reputation: 768
Just some ideas:
Finally, if you want to do it right, your going to have to write up a plugin! Yay!
Good starting point if you choose this route from this SO link
More on making Eclipse plugins (a bit old)
Good luck! And let us know if you come up with anything else...
Upvotes: 0
Reputation: 1580
You could always right-click the project, choose "copy" and then hit ctrl+v (command+v on mac) to paste a new copy of the project into the workspace, then delete the source files that you don't need, leaving only the project configuration.
Upvotes: 6