Visual Build (kinook) 如何构建 c++ 项目?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于。 对于 Visual Studio 2002/2003,它始终调用 devenv.com。 对于 Visual Studio 2005 及更高版本,它默认调用 msbuild.exe,或者如果在“选项”选项卡上的“覆盖”字段中指定,则调用 devenv 或 vcbuild。
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.
http://www.kinook.com/VisBuildPro/Manual/vsnetoptionstab.htm