21 lines
542 B
Swift
21 lines
542 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",
|
|
dependencies: [
|
|
.package(url: "https://github.com/AparokshaUI/Adwaita", from: "0.1.5")
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "AdwaitaTemplate",
|
|
dependencies: [
|
|
.product(name: "Adwaita", package: "Adwaita")
|
|
],
|
|
path: "Sources"
|
|
)
|
|
]
|
|
)
|