Eclipse CDT 中的自动版本增量 (C++)
无论如何,有没有办法让 Eclipse CDT 在每次构建项目时自动增加构建版本号?我可以找到 ANT 的解决方案,但我知道这仅适用于 Java 项目。
Is there anyway to get Eclipse CDT to automatically increment your build version number every time you build your project? I can find solutions for ANT, but I understand that is only for Java projects.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,ANT 不仅仅适用于 java 项目。它主要用于它们,但您将 ANT 与 Maven 混淆了。 Ant 可以与 GCC 等一起使用,但是你不能使用 eclipse 构建系统。
实际上,有一些命令可以与 ant 一起使用(在目标内使用它):
这将创建一个名为 buildnumber.h 和 ant-build-number.n 的文件。不要碰 ant-build-number.n (它包括未来版本的版本号)。然后您可以包含 buildnumber.h。
您还可以使用 exec 任务来执行 gcc (参见 http://ant.apache.org /manual/Tasks/exec.html)
No, ANT isn't only for java projects. It is mainly used for them, but you are confusing ANT for maven. Ant can be used with GCC and such, but then you can't use the eclipse build system.
Actually, there are a few commands that you can use with ant (use this inside a target):
This will create a file named buildnumber.h and ant-build-number.n. Don't touch ant-build-number.n (it includes the build number for future builds). Then you may include buildnumber.h.
You can also use the exec task to execute gcc (see http://ant.apache.org/manual/Tasks/exec.html)