-
-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[question] 有没有办法一次性把项目的多个目标依次编译出来? #404
Comments
这样的话只能通过编写脚本来依次执行 每个 target 的 builder.params 需要预先生成好,都存放在 build/<target名> 的目录下 在写好脚本后,比如: 然后用这个 task 去执行一键编译所有 添加了新的源文件,或者修改了编译参数后,builder.params 需要重新生成一次 |
这样预先生成 builder.params 的方式可能因为clean给删掉吧?然后又是繁复的重复劳动了。 eide插件,能否通过 vscode task 发送命令的方式切换 target&rebuild 呢? 比如这样的流程:
|
这些vscode命令的方式暂时实现不了,因为很多操作是异步的,因此 task 是无法顺序执行的; 目前的版本只能通过上面的命令来执行,builder.params 可以移动到任意位置,也可以重命名,可以放在别的地方 |
好吧, 希望EIDE以后能实现一下一次性编译多个目标的功能。 |
如题,因为某个项目涉及到多个不同的产品,于是每次都要 切换目标&构建 重复操作很多次,感觉太繁琐了。
有没有一种办法,让工程里的所有目标依次完成全部构建呢?
The text was updated successfully, but these errors were encountered: