-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
30 lines (28 loc) · 938 Bytes
/
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
25
26
27
28
29
30
// swift-tools-version: 5.8
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "OnboardingTitleProvider",
platforms: [
.iOS(.v16)
],
products: [
.library(
name: "OnboardingTitleProvider",
targets: ["OnboardingTitleProvider"]),
],
dependencies: [
// Note: this could either point to the local ModuleSDK inside ElementX folder
// or a remote one
//.package(path: "../../element-x-ios/Modules/ModuleSDK"),
.package(url: "https://github.com/aringenbach/ModuleSDK", exact: "0.0.1"),
],
targets: [
.target(
name: "OnboardingTitleProvider",
dependencies: ["ModuleSDK"]),
.testTarget(
name: "OnboardingTitleProviderTests",
dependencies: ["OnboardingTitleProvider"]),
]
)