本文主要是介绍QT报错Xcode not set up properly,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
当升级xcode后打开qt项目时提示如下错误:
Project ERROR: Xcode not set up properly. You may need to confirm the license agreement by running /usr/bin/xcodebuild.
最终在stackoverflow上找到解决办法,链接为:http://stackoverflow.com/questions/33728905/qt-creator-project-error-xcode-not-set-up-properly-you-may-need-to-confirm-t。
我升级完xcode后的版本为8.2.1,直接修改Qt_install_folder/5.7/clang_64/mkspecs/features/mac/default_pre.prf文件。将
isEmpty($$list($$system("/usr/bin/xcrun -find xcrun 2>/dev/null")))
替换为:
isEmpty($$list($$system("/usr/bin/xcrun -find xcodebuild 2>/dev/null")))
这篇关于QT报错Xcode not set up properly的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!