Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use an existing Project as a template for a new one with Eclipse (CDT)?

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?

like image 719
Benjamin Avatar asked Nov 23 '11 13:11

Benjamin


People also ask

What is Eclipse CDT?

The CDT is Eclipse's C/C++ Development Tooling project. It is an industrial-strength C/C++ IDE that also serves as a platform for others to provide value-added tooling for C/C++ developers.


1 Answers

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.

like image 53
Theodore Murdock Avatar answered Oct 14 '22 04:10

Theodore Murdock