2026-05-18 18:05:32 +03:00
|
|
|
// swift-tools-version:5.9
|
|
|
|
|
import PackageDescription
|
|
|
|
|
|
|
|
|
|
let package = Package(
|
|
|
|
|
name: "Montana",
|
2026-05-26 21:14:51 +03:00
|
|
|
defaultLocalization: "ru",
|
2026-05-18 18:05:32 +03:00
|
|
|
platforms: [.macOS(.v14)],
|
|
|
|
|
targets: [
|
|
|
|
|
.executableTarget(
|
|
|
|
|
name: "Montana",
|
|
|
|
|
path: "Sources/Montana",
|
|
|
|
|
resources: [
|
|
|
|
|
.process("Resources")
|
|
|
|
|
],
|
|
|
|
|
swiftSettings: [
|
|
|
|
|
.unsafeFlags(["-parse-as-library"])
|
|
|
|
|
]
|
|
|
|
|
)
|
|
|
|
|
]
|
|
|
|
|
)
|