请问是否有命令仅清理指定项目?
#2611
-
目前我使用 xmake clean 命令可以清理工程下的所有项目, 我希望仅清理特定项目, 请问这可以做到么? 比如有个EXE项目依赖了一个lib 而我仅需要清理并重编EXE而保留lib 的编译结果. 这样可以节省一些.编译时间. 感谢. |
Beta Was this translation helpful? Give feedback.
Answered by
waruqi
Jul 28, 2022
Replies: 1 comment 1 reply
-
xmake clean targetname 指定 target 清理,dev/master 版本会仅仅清理当前target,不清理依赖。见:#2552 |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
cjxx2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
xmake clean targetname
指定 target 清理,dev/master 版本会仅仅清理当前target,不清理依赖。见:#2552