31 lines
649 B
Swift
31 lines
649 B
Swift
// swift-tools-version: 5.6
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "YAnalytics",
|
|
platforms: [
|
|
.iOS(.v14),
|
|
.tvOS(.v14),
|
|
.macOS(.v11),
|
|
.watchOS(.v7)
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "YAnalytics",
|
|
targets: ["YAnalytics"]
|
|
)
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "YAnalytics",
|
|
dependencies: []
|
|
),
|
|
.testTarget(
|
|
name: "YAnalyticsTests",
|
|
dependencies: ["YAnalytics"]
|
|
)
|
|
]
|
|
)
|