Visual Build (kinook) 如何构建 c++ 项目?

发布于 2024-07-29 21:50:36 字数 112 浏览 5 评论 0原文

bld 文件指定了 sln 文件,但是它调用什么来构建它呢? MSDev? 微软构建? 其他?

我想添加一些命令行参数,但我不确定它为非托管 C++ 解决方案调用哪个可执行文件。

The bld file has the sln file specified, but what does it call to build it? MSDev? MSBuild? other?

I want to add some command line params, but I am not sure which executable it calls for unmanaged C++ solutions.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

迷离° 2024-08-05 21:50:36

这取决于。 对于 Visual Studio 2002/2003,它始终调用 devenv.com。 对于 Visual Studio 2005 及更高版本,它默认调用 msbuild.exe,或者如果在“选项”选项卡上的“覆盖”字段中指定,则调用 devenv 或 vcbuild。

...该操作将自动找到正确的 devenv.com 或
msbuild.exe编译器,基于项目或解决方案的版本
正在建设中
。 对于 Visual Studio 2005 及更高版本和 Delphi Prism,此
操作找到并调用 msbuild.exe(与 .NET 一起安装)
框架2.0或更高版本); 对于 Visual Studio 2002/2003,它调用
适用于指定项目或解决方案的 devenv.com 编译器
版本。

http://www.kinook.com/VisBuildPro/Manual/vsnetoptionstab.htm

It depends. For Visual Studio 2002/2003, it always calls devenv.com. For Visual Studio 2005 and up, it calls msbuild.exe by default, or devenv or vcbuild if specified in the Override field on the Options tab.

... the action will automatically locate the correct devenv.com or
msbuild.exe compiler, based on the version of the project or solution
being built
. For Visual Studio 2005 and later and Delphi Prism, this
action locates and calls msbuild.exe (installed with the .NET
Framework 2.0 or later); for Visual Studio 2002/2003, it invokes the
appropriate devenv.com compiler for the specified project or solution
version.

http://www.kinook.com/VisBuildPro/Manual/vsnetoptionstab.htm

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