forked from getsidetrack/swiftui-pipify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
26 lines (23 loc) · 858 Bytes
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// swift-tools-version: 5.6
import PackageDescription
let package = Package(
name: "Pipify",
platforms: [
// Minimum OS version is currently limited by the ImageRenderer:
// https://developer.apple.com/documentation/swiftui/imagerenderer
// A GitHub issue is open to explore backporting to older versions:
// https://github.com/getsidetrack/swiftui-pipify/issues/4
// We use string initialisers for versions in order to reduce the swift tools version required
// (5.6 instead of 5.7). This is for SwiftPackageIndex.
.iOS("15.0.0"),
.macOS("13.0.0"),
.tvOS("16.0.0"),
.macCatalyst("16.0.0"),
],
products: [
.library(name: "Pipify", targets: ["Pipify"]),
],
targets: [
.target(name: "Pipify", path: "Sources"),
]
)