-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
24 lines (23 loc) · 1.16 KB
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// swift-tools-version: 5.9
// This is a Skip (https://skip.tools) package,
// containing a Swift Package Manager project
// that will use the Skip build plugin to transpile the
// Swift Package, Sources, and Tests into an
// Android Gradle Project with Kotlin sources and JUnit tests.
import PackageDescription
let package = Package(
name: "purenotes",
defaultLocalization: "en",
platforms: [.iOS(.v16), .macOS(.v13), .tvOS(.v16), .watchOS(.v9), .macCatalyst(.v16)],
products: [
.library(name: "PureNotesApp", type: .dynamic, targets: ["PureNotes"]),
],
dependencies: [
.package(url: "https://source.skip.tools/skip.git", from: "1.1.3"),
.package(url: "https://source.skip.tools/skip-ui.git", from: "1.0.0")
],
targets: [
.target(name: "PureNotes", dependencies: [.product(name: "SkipUI", package: "skip-ui")], resources: [.process("Resources")], plugins: [.plugin(name: "skipstone", package: "skip")]),
.testTarget(name: "PureNotesTests", dependencies: ["PureNotes", .product(name: "SkipTest", package: "skip")], resources: [.process("Resources")], plugins: [.plugin(name: "skipstone", package: "skip")]),
]
)