mirror of
https://github.com/LukeHagar/plexswift.git
synced 2025-12-06 04:20:52 +00:00
23 lines
391 B
Swift
23 lines
391 B
Swift
// swift-tools-version: 5.6
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Plexswift",
|
|
platforms: [
|
|
.iOS(.v13)
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "Plexswift",
|
|
targets: ["Plexswift"]
|
|
)
|
|
],
|
|
dependencies: [],
|
|
targets: [
|
|
.target(
|
|
name: "Plexswift",
|
|
dependencies: []
|
|
)
|
|
]
|
|
)
|