gpt4 book ai didi

ios - 将库 mylibrary.a 包含到 Podspec 中

转载 作者:行者123 更新时间:2023-11-28 09:28:24 25 4
gpt4 key购买 nike

我已经生成了一个库 mylibrary.a,我想将其与 pod 一起发布。头文件在

/pathToLibDir/headers

我唯一的来源是 mylibrary.a 没有其他文件。 mylibrary.a 位于

/pathToLidDir/lib

这是我创建的 podspec 文件。不确定这是否是正确的做法:

Pod::Spec.new do |s|
s.name = 'podnamen'
s.version = '1.0'
s.summary = 'summary.'
s.public_header_files = '/pathToLibDir/headers/*.h'
s.requires_arc = true
s.libraries = 'mylibrary'
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '/otherpath/include /pathToLidDir/lib', 'LIBRARY_SEARCH_PATHS' => 'otherpath/include /pathToLidDir/headers' }
end

如何将 mylibrary.a 集成到 podspec 中,并使来自 /pathToLibDir/headers 的公共(public) header 在 pod 中可用?我必须使用 vendored_libraries 吗?

最佳答案

您可以查看其他库示例:example_1 example_2 more_examples

关于ios - 将库 mylibrary.a 包含到 Podspec 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30670459/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com