mirror of
https://github.com/ProtonDriveApps/mac-drive.git
synced 2026-05-15 09:50:33 +00:00
ccdf8a12dc
Signed-off-by: Bernardo Alecrim <bernardo.alecrim@proton.ch>
37 lines
1.2 KiB
Swift
37 lines
1.2 KiB
Swift
// swift-tools-version: 5.9
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "PDFileProvider",
|
|
platforms: [
|
|
.iOS(.v16),
|
|
.macOS(.v13),
|
|
],
|
|
products: [
|
|
.library(name: "PDFileProvider", targets: ["PDFileProvider"]),
|
|
],
|
|
dependencies: [
|
|
.package(name: "PDClient", path: "../PDClient"),
|
|
.package(name: "PDCore", path: "../PDCore"),
|
|
.package(name: "PDLocalization", path: "../PDLocalization"),
|
|
.package(name: "PDUploadVerifier", path: "../PDUploadVerifier"),
|
|
.package(name: "PMEventsManager", path: "../PMEventsManager"),
|
|
|
|
.package(url: "https://github.com/AliSoftware/OHHTTPStubs", exact: "9.1.0"),
|
|
.package(url: "https://github.com/ProtonMail/protoncore_ios.git", exact: "33.2.0"),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "PDFileProvider",
|
|
dependencies: [
|
|
.product(name: "PDCore", package: "PDCore"),
|
|
.product(name: "PDLocalization", package: "PDLocalization"),
|
|
.product(name: "PMEventsManager", package: "PMEventsManager"),
|
|
],
|
|
path: "PDFileProvider"
|
|
),
|
|
]
|
|
)
|