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 9d8540d commit 64fe8c1Copy full SHA for 64fe8c1
Sources/PackageDescription4/Product.swift
@@ -97,7 +97,9 @@ public class Product: Encodable {
97
98
/// The different types of a library product.
99
public enum LibraryType: String, Encodable {
100
+ /// A statically linked library.
101
case `static`
102
+ /// A dynamically linked library.
103
case `dynamic`
104
}
105
Sources/PackageDescription4/Target.swift
@@ -18,8 +18,11 @@ public final class Target {
18
19
/// The different types of a target.
20
public enum TargetType: String, Encodable {
21
+ /// A regular target.
22
case regular
23
+ /// A test target.
24
case test
25
+ /// A system framework target.
26
case system
27
28
0 commit comments