Home > OS >  XcodeGen how to specify SPM Package
XcodeGen how to specify SPM Package

Time:11-09

I’m using enter image description here

This is my config for packages:

packages:
  Charts:
    url: https://github.com/danielgindi/Charts
    branch: master

Observing of documentation I don’t see anything about that. Is it even possible?

CodePudding user response:

You can specify the product you need when you define the dependencies:

dependencies:
    - package: Charts
      product: Charts

Search for Package dependency in the documentation

  • Related