Skip to content

Commit

Permalink
SPM installation guide added. (#79)
Browse files Browse the repository at this point in the history
- Swift Package Manager installation guide has been written.
  • Loading branch information
SerhanAksut authored Feb 3, 2022
1 parent 543ad15 commit 53661d0
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,20 @@ use [Carthage](https://github.com/Carthage/Carthage) with Cartfile
github "ChiliLabs/CHIPageControl" ~> 0.1.3
```

### Swift Package Manager

The [Swift Package Manager](https://www.swift.org/package-manager/) is a tool for managing the distribution of Swift code.

Add the following to your `Package.swift` file:
```
dependencies: [
.package(url: "https://github.com/ChiliLabs/CHIPageControl.git", .branch("master"))
]
```
And then build your project
```
$ swift build
```

## Usage
### 🎨 Storyboards
Expand Down

0 comments on commit 53661d0

Please sign in to comment.