mirror of
https://github.com/Sunnyyoung/WeChatTweak-macOS.git
synced 2025-12-13 23:35:42 +08:00
30 lines
634 B
Swift
30 lines
634 B
Swift
// swift-tools-version:6.0
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "WeChatTweak",
|
|
platforms: [
|
|
.macOS(.v12)
|
|
],
|
|
products: [
|
|
.executable(
|
|
name: "wechattweak",
|
|
targets: [
|
|
"WeChatTweak"
|
|
]
|
|
)
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.6.0")
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "WeChatTweak",
|
|
dependencies: [
|
|
.product(name: "ArgumentParser", package: "swift-argument-parser")
|
|
]
|
|
)
|
|
]
|
|
)
|