Added documentation to generate an xcodeproj #477 (#478)

Added documentation to generate an xcodeproj #477
This commit is contained in:
Portia 2018-06-08 19:00:14 -07:00 committed by Cory Benfield
parent 58c983c049
commit 7de79882fb
1 changed files with 12 additions and 0 deletions

View File

@ -165,6 +165,18 @@ echo "Hello SwiftNIO" | nc localhost 9999
If all goes well, you'll see the message echoed back to you.
To generate an Xcode project to work on SwiftNIO in Xcode:
```bash
swift package generate-xcodeproj
```
This generates an Xcode project using SwiftPM. You can open the project with:
```bash
open swift-nio.xcodeproj
```
### An alternative: using `docker-compose`
Alternatively, you may want to develop or test with `docker-compose`.