2020-06-25 14:00:21 +02:00
|
|
|
// swift-tools-version:5.0
|
2019-04-01 16:31:47 +02:00
|
|
|
import PackageDescription
|
|
|
|
|
|
|
|
|
|
let package = Package(
|
|
|
|
|
name: "SwiftyStoreKit",
|
2020-09-21 16:52:24 -05:00
|
|
|
platforms: [.iOS("9.0"), .macOS("10.10"), .tvOS("9.0"), .watchOS("6.2")],
|
2019-04-01 16:31:47 +02:00
|
|
|
products: [
|
2020-06-25 13:57:43 +02:00
|
|
|
// Products define the executables and libraries produced by a package, and make them visible to other packages.
|
|
|
|
|
.library(
|
|
|
|
|
name: "SwiftyStoreKit",
|
2020-08-15 14:33:31 -05:00
|
|
|
targets: ["SwiftyStoreKit"])
|
2020-06-25 13:57:43 +02:00
|
|
|
],
|
|
|
|
|
dependencies: [
|
|
|
|
|
// Dependencies declare other packages that this package depends on.
|
|
|
|
|
// .package(url: /* package url */, from: "1.0.0"),
|
2019-04-01 16:31:47 +02:00
|
|
|
],
|
|
|
|
|
targets: [
|
2020-06-25 13:57:43 +02:00
|
|
|
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
|
|
|
|
|
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
|
2019-04-01 16:31:47 +02:00
|
|
|
.target(
|
|
|
|
|
name: "SwiftyStoreKit",
|
2020-06-26 17:03:26 +02:00
|
|
|
dependencies: []),
|
2020-06-25 13:57:43 +02:00
|
|
|
.testTarget(
|
|
|
|
|
name: "SwiftyStoreKitTests",
|
2020-08-15 14:33:31 -05:00
|
|
|
dependencies: ["SwiftyStoreKit"])
|
2019-04-01 16:31:47 +02:00
|
|
|
]
|
|
|
|
|
)
|