We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f026ba8 commit c9d2f82Copy full SHA for c9d2f82
Package.swift
@@ -1,4 +1,4 @@
1
-// swift-tools-version:5.9
+// swift-tools-version: 5.9
2
3
import PackageDescription
4
[email protected]
@@ -0,0 +1,31 @@
+// swift-tools-version: 6.0
+
+import PackageDescription
5
+let package = Package(
6
+ name: "InterposeKit",
7
+ platforms: [
8
+ .iOS(.v13),
9
+ .macOS(.v10_15),
10
+ .tvOS(.v13),
11
+ .watchOS(.v6)
12
+ ],
13
+ products: [
14
+ .library(
15
16
+ targets: ["InterposeKit"]
17
+ ),
18
19
+ targets: [
20
+ .target(name: "ITKSuperBuilder"),
21
+ .target(
22
23
+ dependencies: ["ITKSuperBuilder"]
24
25
+ .testTarget(
26
+ name: "InterposeKitTests",
27
+ dependencies: ["InterposeKit"]
28
29
30
+ swiftLanguageModes: [.v6]
31
+)
0 commit comments