-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathPackage.swift
More file actions
32 lines (29 loc) · 880 Bytes
/
Package.swift
File metadata and controls
32 lines (29 loc) · 880 Bytes
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
27
28
29
30
31
32
// swift-tools-version: 6.0
import PackageDescription
let swiftSettings: [SwiftSetting] = [
.enableUpcomingFeature("ExistentialAny"),
]
let package = Package(
name: "OpenMultitouchSupport",
platforms: [
.macOS(.v13)
],
products: [
.library(
name: "OpenMultitouchSupport",
targets: ["OpenMultitouchSupport"]
)
],
targets: [
.binaryTarget(
name: "OpenMultitouchSupportXCF",
url: "https://github.com/Kyome22/OpenMultitouchSupport/releases/download/3.0.3/OpenMultitouchSupportXCF.xcframework.zip",
checksum: "9ffe72a65f0107e87a003485ab9530e772a6b45953af2f7d0cc41665d1873dea"
),
.target(
name: "OpenMultitouchSupport",
dependencies: ["OpenMultitouchSupportXCF"],
swiftSettings: swiftSettings
)
]
)