fchaty/FchatyApp/Package.swift
2026-07-27 12:09:51 +02:00

19 lines
411 B
Swift

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