-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathPackage.swift
More file actions
29 lines (27 loc) · 849 Bytes
/
Package.swift
File metadata and controls
29 lines (27 loc) · 849 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
// swift-tools-version:5.3
// The Swift tools version declares the version of the PackageDescription library,
// the minimum version of the Swift tools and Swift language compatibility version to process the manifest,
// and the minimum version of the Swift tools that are needed to use the Swift package.
import PackageDescription
let package = Package(
name: "Optimizely",
platforms: [
.iOS(.v10),
.tvOS(.v10),
.macOS(.v10_14),
.watchOS(.v3)
],
products: [
.library(name: "Optimizely",
targets: ["Optimizely"])
],
targets: [
.target(
name: "Optimizely",
path: "Sources",
exclude: ["CLAUDE.md"],
resources: [.copy("Supporting Files/PrivacyInfo.xcprivacy")]
)
],
swiftLanguageVersions: [.v5]
)