在 Codegear 2009 IDE 中从命令行构建

发布于 2024-11-05 02:23:06 字数 56 浏览 0 评论 0原文

是否可以从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

难忘№最初的完美 2024-11-12 02:23:06

不,但根据您的目标,您也许能够做您想做的事。如果您只想从命令行进行构建,这是可能的。由于 CB2009 使用 msbuild,因此您可以驱动使用与 IDE 构建相同的选项和设置的构建。有一个 rsvars.bat 文件,它设置您需要的所有环境变量,并且在开始菜单中安装了一个名为“RAD Studio 命令提示符”的批处理文件的快捷方式。设置完这些后,您可以调用:

msbuild yourProjectFile.cbproj

然后可以将其集成到 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:

msbuild yourProjectFile.cbproj

This can then be integrated into a make system, continuous integration tool, or other automation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文