forked from skiptools/skip-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
18 lines (17 loc) · 840 Bytes
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// swift-tools-version: 5.9
import PackageDescription
let package = Package(
name: "skip-ui",
platforms: [.iOS(.v16), .macOS(.v13), .tvOS(.v16), .watchOS(.v9), .macCatalyst(.v16)],
products: [
.library(name: "SkipUI", targets: ["SkipUI"]),
],
dependencies: [
.package(url: "https://source.skip.tools/skip.git", from: "0.8.46"),
.package(url: "https://source.skip.tools/skip-model.git", from: "0.7.0"),
],
targets: [
.target(name: "SkipUI", dependencies: [.product(name: "SkipModel", package: "skip-model")], plugins: [.plugin(name: "skipstone", package: "skip")]),
.testTarget(name: "SkipUITests", dependencies: ["SkipUI", .product(name: "SkipTest", package: "skip")], resources: [.process("Resources")], plugins: [.plugin(name: "skipstone", package: "skip")]),
]
)