29 lines
711 B
Swift
29 lines
711 B
Swift
// swift-tools-version:5.5
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Introspect",
|
|
platforms: [
|
|
.iOS(.v13),
|
|
.macOS(.v10_15),
|
|
.tvOS(.v13),
|
|
],
|
|
products: [
|
|
.library(name: "Introspect", targets: ["Introspect"]),
|
|
.library(name: "Introspect-Static", type: .static, targets: ["Introspect"]),
|
|
.library(name: "Introspect-Dynamic", type: .dynamic, targets: ["Introspect"]),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "Introspect",
|
|
path: "Introspect"
|
|
),
|
|
.testTarget(
|
|
name: "IntrospectTests",
|
|
dependencies: ["Introspect"],
|
|
path: "IntrospectTests"
|
|
),
|
|
]
|
|
)
|