mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-06-01 22:19:18 +02:00
0a44b948ec
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
18 lines
428 B
Swift
18 lines
428 B
Swift
// swift-tools-version: 5.9
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "xcode_spm_setup",
|
|
platforms: [.macOS(.v13)],
|
|
dependencies: [
|
|
.package(url: "https://github.com/tuist/XcodeProj.git", .upToNextMajor(from: "9.12.0")),
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "xcode_spm_setup",
|
|
dependencies: ["XcodeProj"],
|
|
path: "Sources"
|
|
)
|
|
]
|
|
)
|