19 lines
411 B
Swift
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"
|
|
)
|
|
]
|
|
)
|