mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2025-01-05 14:27:17 +01:00
24 lines
386 B
Swift
24 lines
386 B
Swift
// swift-tools-version: 5.10
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "AppConfig",
|
|
products: [
|
|
.library(
|
|
name: "AppConfig",
|
|
targets: ["AppConfig"]),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "AppConfig",
|
|
swiftSettings: [
|
|
.enableExperimentalFeature("StrictConcurrency")
|
|
]
|
|
),
|
|
.testTarget(
|
|
name: "AppConfigTests",
|
|
dependencies: ["AppConfig"]),
|
|
]
|
|
)
|