20 lines
459 B
Swift
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"
|
|
)
|
|
]
|
|
)
|