mirror of
https://github.com/Lakr233/vphone-cli.git
synced 2026-04-05 04:59:05 +08:00
- Add git-lfs to brew deps and document git lfs install/pull steps in both English and Chinese READMEs - Fix continuation line alignment in make help (off by one) - Add missing blank line before VM management section
32 lines
949 B
Swift
32 lines
949 B
Swift
// swift-tools-version:6.0
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "vphone-cli",
|
|
platforms: [
|
|
.macOS(.v15),
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.3.1"),
|
|
.package(url: "https://github.com/mhdhejazi/Dynamic", from: "1.2.0"),
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "vphone-cli",
|
|
dependencies: [
|
|
.product(name: "ArgumentParser", package: "swift-argument-parser"),
|
|
.product(name: "Dynamic", package: "Dynamic"),
|
|
],
|
|
path: "sources/vphone-cli",
|
|
linkerSettings: [
|
|
.linkedFramework("Virtualization"),
|
|
.linkedFramework("AppKit"),
|
|
.linkedFramework("SwiftUI"),
|
|
.linkedFramework("CoreLocation"),
|
|
.linkedFramework("AVFoundation"),
|
|
]
|
|
),
|
|
]
|
|
)
|