mirror of
https://github.com/nextcloud/desktop.git
synced 2026-01-14 02:01:28 +00:00
To stay compatible with the existing tool chain in our CI. The requirement of 6.2 is not necessary as of now. Signed-off-by: Iva Horn <iva.horn@nextcloud.com>
67 lines
2.5 KiB
Swift
67 lines
2.5 KiB
Swift
// swift-tools-version: 6.1
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "NextcloudFileProviderKit",
|
|
platforms: [
|
|
.iOS(.v16),
|
|
.macOS(.v11),
|
|
.visionOS(.v1)
|
|
],
|
|
products: [
|
|
// Products define the executables and libraries a package produces, making them visible to other packages.
|
|
.library(
|
|
name: "NextcloudFileProviderKit",
|
|
targets: ["NextcloudFileProviderKit"]
|
|
)
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/nextcloud/NextcloudCapabilitiesKit.git", from: "2.4.0"),
|
|
.package(url: "https://github.com/nextcloud/NextcloudKit", from: "7.2.3"),
|
|
.package(url: "https://github.com/nicklockwood/SwiftFormat", from: "0.55.0"),
|
|
.package(url: "https://github.com/realm/realm-swift.git", from: "20.0.1"),
|
|
.package(url: "https://github.com/apple/swift-nio.git", from: "2.0.0")
|
|
],
|
|
targets: [
|
|
// Targets are the basic building blocks of a package, defining a module or a test suite.
|
|
// Targets can depend on other targets in this package and products from dependencies.
|
|
.target(
|
|
name: "NextcloudFileProviderKit",
|
|
dependencies: [
|
|
.product(name: "NextcloudCapabilitiesKit", package: "NextcloudCapabilitiesKit"),
|
|
.product(name: "NextcloudKit", package: "NextcloudKit"),
|
|
.product(name: "RealmSwift", package: "realm-swift")
|
|
]
|
|
),
|
|
.target(
|
|
name: "NextcloudFileProviderKitMocks",
|
|
dependencies: [
|
|
"NextcloudFileProviderKit"
|
|
]
|
|
),
|
|
.target(
|
|
name: "TestInterface",
|
|
dependencies: [
|
|
"NextcloudFileProviderKit",
|
|
"NextcloudFileProviderKitMocks",
|
|
.product(name: "NIOCore", package: "swift-nio"),
|
|
.product(name: "NIOPosix", package: "swift-nio"),
|
|
.product(name: "NIOHTTP1", package: "swift-nio"),
|
|
.product(name: "NIOWebSocket", package: "swift-nio")
|
|
],
|
|
path: "Tests/Interface"
|
|
),
|
|
.testTarget(
|
|
name: "TestInterfaceTests",
|
|
dependencies: ["NextcloudFileProviderKit", "TestInterface"],
|
|
path: "Tests/InterfaceTests"
|
|
),
|
|
.testTarget(
|
|
name: "NextcloudFileProviderKitTests",
|
|
dependencies: ["NextcloudFileProviderKit", "TestInterface"]
|
|
)
|
|
]
|
|
)
|