some minor additional detail on setting up shared dev credentials to support building
This commit is contained in:
parent
716653c235
commit
74dd95e293
15
README.md
15
README.md
|
@ -40,8 +40,19 @@ This allows for a pristine project with code signing set up with the appropriate
|
||||||
developer ID and certificates, and for dev to be able to have local settings
|
developer ID and certificates, and for dev to be able to have local settings
|
||||||
without needing to check in anything into source control.
|
without needing to check in anything into source control.
|
||||||
|
|
||||||
As an example, make a `../../SharedXcodeSettings/DeveloperSettings.xcconfig` file and
|
As an example, make a directory SharedXcodeSettings next to where you have this repository.
|
||||||
give it the contents
|
An example of the structure is:
|
||||||
|
|
||||||
|
```
|
||||||
|
aDirectory/
|
||||||
|
SharedXcodeSettings/
|
||||||
|
DeveloperSettings.xcconfig
|
||||||
|
NetNewsWire
|
||||||
|
NewNewsSire.xcworkspace
|
||||||
|
```
|
||||||
|
|
||||||
|
Then create a plain text file in it: `SharedXcodeSettings/DeveloperSettings.xcconfig` and
|
||||||
|
give it the contents:
|
||||||
|
|
||||||
```
|
```
|
||||||
CODE_SIGN_IDENTITY = Mac Developer
|
CODE_SIGN_IDENTITY = Mac Developer
|
||||||
|
|
Loading…
Reference in New Issue