32 lines
929 B
Swift
32 lines
929 B
Swift
// swift-tools-version: 5.8
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Adwaita Template",
|
|
platforms: [
|
|
.macOS(.v13)
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/AparokshaUI/Adwaita", from: "0.2.0"),
|
|
.package(url: "https://github.com/AparokshaUI/Localized", from: "0.2.0")
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "AdwaitaTemplate",
|
|
dependencies: [
|
|
.product(name: "Adwaita", package: "Adwaita"),
|
|
.product(name: "Localized", package: "Localized")
|
|
],
|
|
path: "Sources",
|
|
resources: [
|
|
.process("Localized.yml")
|
|
],
|
|
plugins: [
|
|
.plugin(name: "GenerateLocalized", package: "Localized")
|
|
]
|
|
)
|
|
]
|
|
)
|