默认构建设置 Eclipse CDT
有没有办法更改在 Eclipse CDT 中创建新项目时使用的构建设置?每次创建新项目时,我都必须更改一些工具链设置。
Is there any way to change build settings which are used when I create new project in Eclipse CDT? Some of toolchain setting I have to change every time I creating new project.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
AFAIK 现在有办法以一种很好的方式做到这一点。一个不太好的方法是创建一个包含所有所需设置的空项目,并在需要新项目时复制该项目。
AFAIK there is now way to do this in a nice way. A not so nice way would be to create an empty project with all the needed settings and to make a copy of this whenever a new project is needed.
构建设置存储在 .cproject 文件和项目顶部的 .settings 目录中。您可以将它们从一个项目复制并粘贴到另一个项目,然后更改 .cproject 文件中显示的所有项目名称。
The build settings are stored in the .cproject file and the .settings directory at the top of the project. You can copy and paste them from one project to another then change all the project name wherever it shows up in the .cproject file.
当我向谷歌询问同样的事情时,我刚刚发现了这个问题:)
实现方式:
窗口-->偏好设置 --> C/C++(例如)-->新建 CDT 项目向导 -->选择所需的工具链并将其设为首选或不首选。
希望这仍然有意义。
I found this question just now when I asked google the same thing :)
The way to do it:
Window --> Preferences --> C/C++ (For example) --> New CDT Project Wizard --> select the desired toolchain and make it preferred or not preferred.
Hope this is still relevant.