Xcodegen 中静态库目标的产品类型?

Product type of static library target in Xcodegen?

我创建了一个名为 project.yml 的文件,用于生成我的 Swift .xcodeprojXcodegen。例如:

name: MyProject
targets:
  MyAppTarget:
    type: application
    sources:
      - MyAppTarget
    ...
  MyLibrary
    type: static library // identify the project type of the target here
    sources:
      - MyLibrary
    ...

你能帮帮我吗?

正在尝试使用 library.static 来识别静态库的目标。 顺便说一下,你可以在 XcodeGen-ProjectSpec

找到任何东西