mirror of
https://github.com/YTLitePlus/YTLitePlus.git
synced 2026-05-09 06:19:59 +00:00
16 lines
256 B
Swift
16 lines
256 B
Swift
// swift-tools-version:5.2
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Alderis",
|
|
platforms: [
|
|
.iOS(.v12)
|
|
],
|
|
products: [
|
|
.library(name: "Alderis", targets: ["Alderis"]),
|
|
],
|
|
targets: [
|
|
.target(name: "Alderis", path: "Alderis")
|
|
]
|
|
)
|