Yonas Kolb

Results 238 comments of Yonas Kolb
trafficstars

1. It's not currently possible to generate multiple per target 2. It's come up once before, so happy for a PR 3. Generation is just a convenience. You can still...

Wow, didn’t know that, thanks @frederoni!

I'm happy to accept a PR that adds a `products` array, but otherwise this is how Xcode models it.

I've put up a draft PR for this here #1020, if you'd like to test it

Would appreciate some testing of this to make sure it works on your projects. You can use [Mint](https://github.com/yonaskolb/Mint) to test it easily ``` mint run yonaskolb/xcodegen@carthage-xcframeworks xcodegen ```

I think `options.fileTypes` is what you're after? That lets you customise any file type across the project without doing it in each target source definition. ```yml options: fileTypes: linphonesrc: buildPhase:...

Thanks @SofteqDG. Is this for using XcodeGenKit as a dependency, or what is your workflow here?

If the target ids that cocoapods generates are stable (which I believe they are) you should be able to just create that scheme after Xcode generation and pod install, and...

Hi @acecilia If you want to override that you can set the target setting to `${inherited}` ``` settings: SDKROOT: ${inherited} ``` May I ask, do your `SDKROOT` settings not align...