forked from auth0/SimpleKeychain
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.swift
More file actions
25 lines (24 loc) · 776 Bytes
/
Package.swift
File metadata and controls
25 lines (24 loc) · 776 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
// swift-tools-version:5.9
import PackageDescription
let package = Package(
name: "SimpleKeychain",
platforms: [.iOS(.v14), .macOS(.v10_15), .tvOS(.v14), .watchOS(.v7), .visionOS(.v1)],
products: [
.library(name: "SimpleKeychain", targets: ["SimpleKeychain"]),
.library(name: "SimpleKeychain-dynamic", type: .dynamic, targets: ["SimpleKeychain"])
],
targets: [
.target(
name: "SimpleKeychain",
dependencies: [],
path: "SimpleKeychain",
exclude: ["Info.plist"]),
.testTarget(
name: "SimpleKeychainTests",
dependencies: [
"SimpleKeychain",
],
path: "SimpleKeychainTests",
exclude: ["Info.plist"])
]
)