XPS is a light-weight X proxy system library for iOS and macOS.
XPS supports multiple methods for installing the library in a project.
CocoaPods is a dependency manager for Objective-C, which automates and simplifies the process of using 3rd-party libraries like XPS in your projects. You can install it with the following command:
$ gem install cocoapods
CocoaPods 1.5.0+ is required to build XPS 0.1.0+.
To integrate XPS into your Xcode project using CocoaPods, specify it in your Podfile
:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
target 'TargetName' do
pod 'XPS', '~> 0.1.1'
end
Then, run the following command:
$ pod install
Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.
You can install Carthage with Homebrew using the following command:
$ brew update
$ brew install carthage
To integrate XPS into your Xcode project using Carthage, specify it in your Cartfile
:
github "wizjin/xps" ~> 0.1.1
Run carthage
to build the framework and drag the built XPS.framework
into your Xcode project.
XPS is released under the MIT license. See LICENSE for details.