Skip to content

Commit 8b4023f

Browse files
authored
clarify platform requirements (#25)
Linux and macOS are actually supported but other Darwin-based platforms still need to be listed to not break compilation of potential multi-platform adopters.
1 parent 0977b1c commit 8b4023f

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

Package.swift

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,14 @@ import PackageDescription
66
let package = Package(
77
name: "swift-profile-recorder",
88
platforms: [
9-
.macOS(.v11), .iOS(.v14), .watchOS(.v7), .tvOS(.v14),
9+
// supported
10+
// Linux
11+
.macOS(.v11),
12+
13+
// not supported, listed to make compilation work
14+
.iOS(.v14),
15+
.watchOS(.v7),
16+
.tvOS(.v14),
1017
],
1118
products: [
1219
.library(name: "ProfileRecorder", targets: ["ProfileRecorder"]),

0 commit comments

Comments
 (0)