|
@@ -11,6 +11,7 @@
|
|
- [Requirements](#requirements)
|
|
- [Requirements](#requirements)
|
|
- [Installation](#installation)
|
|
- [Installation](#installation)
|
|
- [Cocoapods](#cocoapods)
|
|
- [Cocoapods](#cocoapods)
|
|
|
|
+ - [Carthage](#carthage)
|
|
- [Build](#build)
|
|
- [Build](#build)
|
|
- [Default](#default)
|
|
- [Default](#default)
|
|
- [Build with your own VLC repository](#build-with-your-own-vlc-repository)
|
|
- [Build with your own VLC repository](#build-with-your-own-vlc-repository)
|
|
@@ -88,7 +89,25 @@ Then, run the following command,
|
|
```bash
|
|
```bash
|
|
$ pod install
|
|
$ pod install
|
|
```
|
|
```
|
|
|
|
+### Carthage
|
|
|
|
|
|
|
|
+[Carthage](https://github.com/Carthage/Carthage) is a way to add frameworks to your Cocoa application. You can install it with the following command,
|
|
|
|
+
|
|
|
|
+```bash
|
|
|
|
+brew install carthage
|
|
|
|
+```
|
|
|
|
+
|
|
|
|
+To integrate VLCKit into your project, specify it in your `Cartfile`,
|
|
|
|
+
|
|
|
|
+```
|
|
|
|
+binary "https://code.videolan.org/videolan/VLCKit/tree/master/Packaging/MobileVLCKit.json" ~> 3.1.3
|
|
|
|
+```
|
|
|
|
+
|
|
|
|
+Then, run the following command,
|
|
|
|
+
|
|
|
|
+```bash
|
|
|
|
+carthage update
|
|
|
|
+```
|
|
## Build
|
|
## Build
|
|
|
|
|
|
### Default
|
|
### Default
|