Skip to content

Commit

Permalink
Merge pull request #39 from i-tengfei/master
Browse files Browse the repository at this point in the history
Add Swift Package Manager support
  • Loading branch information
congnd authored Mar 12, 2020
2 parents e6b85a9 + 18254ed commit d9d12cd
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
// swift-tools-version:5.0
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription

let package = Package(
name: "FMPhotoPicker",
platforms: [
.iOS(.v9)
],
products: [
.library(
name: "FMPhotoPicker",
targets: ["FMPhotoPicker"])
],
targets: [
.target(
name: "FMPhotoPicker",
path: ".",
sources: ["FMPhotoPicker/FMPhotoPicker"])
],
swiftLanguageVersions: [.v5]
)

0 comments on commit d9d12cd

Please sign in to comment.