I am trying to convert an existing GitHub repository ( RMStore , but it can apply to any repo) for Carthage compatibility . This requires adding the target of the Framework to the Xcode project. I want the resulting structure to be called RMStore.framework, however I cannot create a new target for the Xcode project called RMStore , because there is already a target with this name that creates a static library (and I don’t want to get rid of this target).
I created a new target called RMStoreFramework , but the resulting structure is called RMStoreFramework.frameworkwhat I don't want. So is there a way:
- create two goals with the same name or, alternatively,
- to make the name of the resulting structure different from the name of the target?
source
share