fchaty/FchatiApp/Package.swift
2026-07-27 02:45:51 +02:00

20 lines
459 B
Swift

// swift-tools-version: 5.9
import PackageDescription
let package = Package(
name: "FchatiApp",
platforms: [.macOS(.v14)],
targets: [
.executableTarget(
name: "FchatiApp",
path: "Sources/FchatiApp",
resources: [.process("Resources")]
),
.testTarget(
name: "FchatiAppTests",
dependencies: ["FchatiApp"],
path: "Tests/FchatiAppTests"
)
]
)