我创建了一个名为project.yml的文件,用Xcodegen生成Swift .xcodeproj。例如:
name: MyProject
targets:
MyAppTarget:
type: application
sources:
- MyAppTarget
...
MyLibrary
type: static library // identify the project type of the target here
sources:
- MyLibrary
...你能帮帮我吗?
发布于 2019-11-17 07:13:40
尝试使用library.static标识静态库的目标。顺便说一句,你可以在XcodeGen-ProjectSpec找到任何东西
https://stackoverflow.com/questions/58898312
复制相似问题