作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想通过 Cocoapods podspecs 添加扩展名为 .swiftdoc
和 .swiftmodule
的文件。
这些文件应该添加到“swift 编译器搜索路径”下的“导入路径”中。
这怎么可能?
我当前的 podspect 看起来像:
s.name = 'Framework'
s.version = '1.4'
s.license = { :type => '', :file => 'LICENSE.md' }
s.homepage = 'http://google.com'
s.authors = { 'orta' => 'saranjith' }
s.summary = ''
s.description = ''
s.resources = 'Bundle/Resources.bundle'
s.vendored_libraries = 'Libraries/someName.a'
s.?? = ModuleMap/someName.swiftmodule
最佳答案
我假设您想创建一个带有静态库的 podspec(通过查看您的文件扩展名 .a)
尝试类似的东西;
s.name = 'Framework'
s.version = '1.4'
s.license = { :type => '', :file => 'LICENSE.md' }
s.homepage = 'http://google.com'
s.authors = { 'orta' => 'saranjith' }
s.summary = ''
s.description = ''
s.static_framework = true (Potentially needed)
s.resources = 'Bundle/Resources.bundle'
s.vendored_libraries = 'Libraries/someName.a'
s.source_files = 'Libraries/yourHeaders/*.h'
s.preserve_paths = 'Libraries/**/*.*' (<-- Potentially you will need to preserve your paths)
关于ios - 在哪里添加。使用 podspec 的 swiftdoc 和 .swiftmodule 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62323947/
为我的 Xcode 项目创建构建需要太多时间。它卡在“复制 swiftdocs”处。我正在制作一个在设备上运行的版本。我不明白为什么会发生这种情况。互联网上没有相关信息。仅供引用,我在项目中使用 Co
我的一个项目突然无法在 Xcode 中编译。它只是在“复制 swiftdocs”处停滞不前,永远不会超过它。 Xcode 是完全响应式的,这里的最后一行表示它成功地 xopied x86_64.swi
我正在使用 Vapor 为 Ubuntu 编写我的 Swift 应用程序。我的任务是为生产提供最小的 Docker 镜像。我已经大幅缩减了图像,但出于好奇,我想知道我的最终可执行文件是否需要所有已编译
我想通过 Cocoapods podspecs 添加扩展名为 .swiftdoc 和 .swiftmodule 的文件。 这些文件应该添加到“swift 编译器搜索路径”下的“导入路径”中。 这怎么可
我是一名优秀的程序员,十分优秀!