重建而不重新编译预编译头
有时我需要重建我的项目,但我不希望每次这样做时都重新编译预编译头 - 这有点违背了目的,至少在这种情况下是这样。有没有办法让 Visual Studio 重建而无需重新编译 PCH 并根据需要编译 PCH(如果很少更改的标头发生更改)
Sometimes I need to perform a rebuild of my project but I don't want the pre-compiled headers to be recompiled every time I do that - sort of defeats the purpose, at least in this case. Is there any way to get Visual Studio to rebuild without recompiling the PCH and compile the PCH as needed (if the rarely changed headers change)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为其编写脚本并使用“工具->外部工具...”将其添加到工具菜单中,从而为您提供“在 IDE 内”的解决方案。您的delete-exe-files脚本可以包含构建步骤,如下所示:
如何从命令行编译 Visual Studio 项目?
Write a script for it and add it to the tools menu using 'Tools->External Tools...', giving you a solution 'Within the IDE'. Your delete-exe-files script can include the build step as per:
How do I compile a Visual Studio project from the command-line?