24 lines
687 B
Swift
24 lines
687 B
Swift
// swift-tools-version: 5.10
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "swift-uwp",
|
|
products: [
|
|
.library(name: "UWP", type: .dynamic, targets: ["UWP"]),
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/thebrowsercompany/swift-cwinrt", branch: "main"),
|
|
.package(url: "https://github.com/thebrowsercompany/swift-windowsfoundation", branch: "main"),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "UWP",
|
|
dependencies: [
|
|
.product(name: "CWinRT", package: "swift-cwinrt"),
|
|
.product(name: "WindowsFoundation", package: "swift-windowsfoundation"),
|
|
]
|
|
),
|
|
]
|
|
)
|