pod 设置 HEADER_SEARCH_PATHS

在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

©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容