mirror of
https://github.com/hyperoslo/Cache.git
synced 2026-04-07 19:17:36 +00:00
26 lines
534 B
Swift
26 lines
534 B
Swift
// swift-tools-version:5.5
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Cache",
|
|
products: [
|
|
.library(
|
|
name: "Cache",
|
|
targets: ["Cache"]),
|
|
],
|
|
dependencies: [],
|
|
targets: [
|
|
.target(
|
|
name: "Cache",
|
|
path: "Source",
|
|
resources: [.copy("PrivacyInfo.xcprivacy")]
|
|
),
|
|
.testTarget(
|
|
name: "CacheTests",
|
|
dependencies: ["Cache"],
|
|
path: "Tests"),
|
|
],
|
|
swiftLanguageVersions: [.v5]
|
|
)
|