Get qmake to execute shell script after build finished on Mac

若如初见. 提交于 2019-12-03 14:17:29

Path is relative to build directory. If your script is not in your build directory,you have to change path. Try using ../MyScript.sh

Why are you using target? If your only intent is to execute MyScript.sh after the build, you need only

QMAKE_POST_LINK += ./MyScript.sh
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!