从cmake中设置xcode“库搜索路径”?

问题描述 投票:0回答:1

从 Qt Creator 配置项目后,在 xcode 中,我需要手动转到项目构建设置,找到库搜索路径并手动设置一些内容…

这可以从 cmake 自动化吗? 我需要设置以下路径: enter image description here

不幸的是,我尝试尽可能多地搜索谷歌,但是谷歌没有给我任何东西

感谢您的任何提示。

ios xcode macos qt cmake
1个回答
0
投票

正如@Tsyvarev 建议的那样,最终解决方案如下:

target_link_directories(${TARGET_NAME} PRIVATE "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos")

只要这一行就基本可以处理所有事情,不需要其他

© www.soinside.com 2019 - 2024. All rights reserved.