Skip to content
This repository has been archived by the owner on Feb 3, 2021. It is now read-only.

Commit

Permalink
Initial version of Swift Package Manager
Browse files Browse the repository at this point in the history
  • Loading branch information
somenkovnikita committed Feb 6, 2021
1 parent a7eba17 commit 2c76b24
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
// swift-tools-version:5.0
import PackageDescription

let package = Package(
name: "Shimmer",
platforms: [
.iOS(.v9),
.tvOS(.v10)
],
products: [
.library(
name: "Shimmer",
targets: ["Shimmer"]
)
],
targets: [
.target(
name: "Shimmer",
path: "FBShimmering",
exclude: [
"FBShimmering-Prefix.pch"
],
publicHeadersPath: "../FBShimmering"
)
]
)

0 comments on commit 2c76b24

Please sign in to comment.