-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
32 lines (26 loc) · 1.23 KB
/
Package.swift
File metadata and controls
32 lines (26 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// swift-tools-version: 5.10
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
// or maybe this is called: w3w-swift-presenters-map
name: "w3w-swift-components-map",
platforms: [.iOS(.v13)],
products: [
.library(name: "W3WSwiftComponentsMap", targets: ["W3WSwiftComponentsMap"]),
],
dependencies: [
.package(url: "https://github.com/what3words/w3w-swift-themes.git", "1.0.0"..<"2.0.0"),
.package(url: "https://github.com/what3words/w3w-swift-design.git", "1.0.0"..<"2.0.0"),
.package(url: "https://github.com/what3words/w3w-swift-core.git", "1.0.0"..<"2.0.0"),
.package(url: "git@github.com:w3w-internal/w3w-swift-app-events.git", "5.0.0"..<"6.0.0")
],
targets: [
.target(name: "W3WSwiftComponentsMap", dependencies: [
.product(name: "W3WSwiftCore", package: "w3w-swift-core"),
.product(name: "W3WSwiftDesign", package: "w3w-swift-design"),
.product(name: "W3WSwiftThemes", package: "w3w-swift-themes"),
.product(name: "W3WSwiftAppEvents", package: "w3w-swift-app-events")
]),
.testTarget(name: "w3w-swift-components-mapTests", dependencies: ["W3WSwiftComponentsMap"]),
]
)