使用Visual Studio 2010编译后执行exe文件或bat文件
我会在C++程序编译结束后执行exe文件或bat文件。我怎么能这样做呢?
编辑1 这是我的实际命令行:
start "C:\mypath\myexe.exe myarguments"
I would execute an exe file or a bat file after that the compilation of a C++ program ends. How could I do this?
EDIT 1
This is my actual command line:
start "C:\mypath\myexe.exe myarguments"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 C++ 项目配置属性中的“构建事件”部分。您可以在此处定义在项目构建之前、链接器运行之前以及项目构建之后运行的命令。
Check out the "Build Events" section in your C++ project's configuration properties. Here you can define commands to run before the project builds, before the linker runs, and after the project has built.
在项目属性中检查构建后事件命令行。
Check Post Build Event command line, in the Project properties.