美文网首页
pod 设置 HEADER_SEARCH_PATHS

pod 设置 HEADER_SEARCH_PATHS

作者: 介和 | 来源:发表于2020-12-17 13:50 被阅读0次

在Podfile中定义一个方法: 

def append_header_search_path(target,path)

    target.build_configurations.each do |config|

        # Note that there's a space character after `$(inherited)`.

        config.build_settings["HEADER_SEARCH_PATHS"] ||= "$(inherited) "

        config.build_settings["HEADER_SEARCH_PATHS"] << path

    end

end

然后在post_install中调用该方法:

installer.pods_project.targets.each do |target|

    if target.name == "Specta"

            append_header_search_path(target,"$(PLATFORM_DIR)/Developer/Library/Frameworks")

    end

end

相关文章

网友评论

      本文标题:pod 设置 HEADER_SEARCH_PATHS

      本文链接:https://www.haomeiwen.com/subject/kukzgktx.html