IAR工程编译后如何调用bat文件?

IAR工程编译后如何调用bat文件?

关键问题在于将当前工程的路径传递到bat文件,在命令行作为参数传入,在bat文件中通过%~1访问第1个参数。

bat文件中所调用的程序如果返回错误,执行时会提示错误。

1)project>>option>>Build Actions>>Build Actions Configuration>>Post-build command line:

$PROJ_DIR$\build.bat $PROJ_DIR$

2)编辑build.bat

cd %~1
cd Debug
cd Exe

...do anything you want...

 

posted @ 2020-09-22 14:26  today3  阅读(1418)  评论(0编辑  收藏  举报