-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
30 lines (28 loc) · 858 Bytes
/
Copy pathPackage.swift
File metadata and controls
30 lines (28 loc) · 858 Bytes
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.7
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "RedditSDK",
platforms: [
.iOS("16"), .macOS("12")
],
products: [
.library(name: "RedditSDK", targets: ["RedditSDK"])
],
dependencies: [
.package(url: "https://github.com/openid/AppAuth-iOS.git", from: "1.6.0")
],
targets: [
.target(
name: "RedditSDK",
dependencies: [.product(name: "AppAuth", package: "AppAuth-iOS")],
path: "Sources",
exclude: ["Info.plist"]
),
.testTarget(
name: "RedditSDKTests",
dependencies: ["RedditSDK", .product(name: "AppAuth", package: "AppAuth-iOS")],
path: "Tests"
)
]
)