This repository has been archived by the owner on Nov 12, 2024. It is now read-only.
forked from bustoutsolutions/siesta
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Package.swift
51 lines (48 loc) · 1.6 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
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "Siesta",
platforms: [
.iOS(.v10),
.macOS(.v10_12),
.tvOS(.v9),
],
products: [
.library(name: "Siesta", targets: ["Siesta"]),
.library(name: "SiestaUI", targets: ["SiestaUI"]),
.library(name: "Siesta_Alamofire", targets: ["Siesta_Alamofire"]),
],
dependencies: [
// Siesta has no required third-party dependencies for use in downstream projects.
// For optional Siesta-Alamofire module:
.package(url: "https://github.com/Alamofire/Alamofire", .upToNextMajor(from: "5.0.5")),
// For tests:
.package(url: "https://github.com/pcantrell/Quick", .branch("siesta")),
.package(url: "https://github.com/Quick/Nimble", from: "9.0.0"),
],
targets: [
.target(
name: "Siesta"
),
.target(
name: "SiestaUI",
dependencies: ["Siesta"],
resources: [.process("ResourceStatusOverlay.xib")],
swiftSettings: [
.define("SIESTA_USE_MODULE_BUNDLE"),
]
),
.target(
name: "Siesta_Alamofire",
dependencies: ["Siesta", "Alamofire"],
path: "Extensions/Alamofire"
),
.testTarget(
name: "SiestaTests",
dependencies: ["SiestaUI", "Siesta_Alamofire", "Quick", "Nimble"],
path: "Tests/Functional",
exclude: ["ObjcCompatibilitySpec.m"] // SwiftPM currently only supports Swift
),
],
swiftLanguageVersions: [.v5]
)