在 Codegear 2009 IDE 中从命令行构建
是否可以从 Codegear 2009 IDE 自动生成 MAKEFILE?或者从命令行构建项目?
Is it possible to automagically generate a MAKEFILE from the Codegear 2009 IDE? Or build a project from the command line?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,但根据您的目标,您也许能够做您想做的事。如果您只想从命令行进行构建,这是可能的。由于 CB2009 使用 msbuild,因此您可以驱动使用与 IDE 构建相同的选项和设置的构建。有一个 rsvars.bat 文件,它设置您需要的所有环境变量,并且在开始菜单中安装了一个名为“RAD Studio 命令提示符”的批处理文件的快捷方式。设置完这些后,您可以调用:
然后可以将其集成到 make 系统、持续集成工具或其他自动化中。
No, but depending on your objective, you may be able to do what you want. If you simply want to do a build from a command line, this is possible. Because CB2009 uses msbuild, you can drive a build which uses all the same options and settings as an IDE build. There is a rsvars.bat file which sets all the environment variables you need and a shortcut to this batch file installed in the start menu called "RAD Studio Command Prompt" Once those are set, you can then call:
This can then be integrated into a make system, continuous integration tool, or other automation.