使用 ANT 等脚本自动构建 minGW/msys 过程
我在 Windows XP 中有一个 C++ 项目。我正在使用 minGW/msys 编译这个项目。 我想使用一些脚本语言(如 ANT)自动执行此任务。 但我无法用谷歌搜索它。 请帮助我在 Windows 上自动编译 minGW/msys。
I am having a C++ project in windows XP. I am compiling this project using minGW/msys.
I want to automate this task using some scriping language like ANT.
but I could not google it.
Please help me to automate minGW/msys compilation on windows.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
make
是执行此操作的既定工具,实际上是 ant 的蓝图(它最初是一个语法简化的 make,现在是一团糟,就像 Java 的所有内容一样,但这不是要点)。要简化程序站点配置和 Makefile 生成,请参阅autoconf
和automake
。make
is the established tool to do this and actually the blueprint for ant (which was started to be a syntax-simplified make and is now a horrible mess, just like everything Java, but that's beside the main point). To simplify program site configuration and Makefile generation, seeautoconf
andautomake
.