-
Notifications
You must be signed in to change notification settings - Fork 12
/
Package.swift
63 lines (62 loc) · 2.05 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// 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(
name: "ObjectMapperAdditions",
platforms: [
.iOS(.v12),
.macOS(.v10_13),
.tvOS(.v12),
.watchOS(.v4),
],
products: [
.library(
name: "ObjectMapperAdditions",
type: .dynamic,
targets: ["ObjectMapperAdditions"]
),
.library(
name: "ObjectMapperAdditionsRealm",
type: .dynamic,
targets: ["ObjectMapperAdditionsRealm"]
)
],
dependencies: [
.package(url: "https://github.com/realm/realm-swift", .upToNextMajor(from: "10.50.0")),
.package(url: "https://github.com/tristanhimmelman/ObjectMapper", .upToNextMinor(from: "4.2.0")),
.package(url: "https://github.com/anton-plebanovich/RoutableLogger", .upToNextMajor(from: "1.0.0")),
],
targets: [
.target(
name: "ObjectMapperAdditions",
dependencies: [
.product(name: "ObjectMapper", package: "ObjectMapper"),
.product(name: "RoutableLogger", package: "RoutableLogger"),
],
path: "ObjectMapperAdditions",
sources: ["Classes/Core"],
resources: [
.process("Privacy/ObjectMapperAdditions.Core/PrivacyInfo.xcprivacy")
],
swiftSettings: [
.define("SPM"),
]
),
.target(
name: "ObjectMapperAdditionsRealm",
dependencies: [
"ObjectMapperAdditions",
.product(name: "RealmSwift", package: "realm-swift"),
],
path: "ObjectMapperAdditions",
sources: ["Classes/Realm"],
resources: [
.process("Privacy/ObjectMapperAdditions.Realm/PrivacyInfo.xcprivacy")
],
swiftSettings: [
.define("SPM"),
]
),
],
swiftLanguageVersions: [.v5]
)